diff options
author | Sean McBride <sean@rogue-research.com> | 2014-12-11 13:10:03 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-12-11 13:53:06 -0500 |
commit | 111be1801fcf50412e702be2d5966dbf52926b94 (patch) | |
tree | 8bb76dc144ec0b5190f9992fc69af59943eaa699 /Source/CursesDialog/cmCursesMainForm.h | |
parent | 3171fe0afa7169c1e814a5c0e08b115002f0d3c3 (diff) | |
download | cmake-111be1801fcf50412e702be2d5966dbf52926b94.tar.gz |
Rename header guards to not start with double underscore
Use regex to find/replace:
__(cm.*_h)
\1
Then fix QCMake.h by hand.
Diffstat (limited to 'Source/CursesDialog/cmCursesMainForm.h')
-rw-r--r-- | Source/CursesDialog/cmCursesMainForm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/CursesDialog/cmCursesMainForm.h b/Source/CursesDialog/cmCursesMainForm.h index fba9bc50d1..64552525c5 100644 --- a/Source/CursesDialog/cmCursesMainForm.h +++ b/Source/CursesDialog/cmCursesMainForm.h @@ -9,8 +9,8 @@ implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License for more information. ============================================================================*/ -#ifndef __cmCursesMainForm_h -#define __cmCursesMainForm_h +#ifndef cmCursesMainForm_h +#define cmCursesMainForm_h #include "../cmStandardIncludes.h" #include "cmCursesForm.h" @@ -161,4 +161,4 @@ protected: bool SearchMode; }; -#endif // __cmCursesMainForm_h +#endif // cmCursesMainForm_h |