diff options
author | Sean McBride <sean@rogue-research.com> | 2014-12-11 18:10:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-12-11 18:53:06 (GMT) |
commit | 111be1801fcf50412e702be2d5966dbf52926b94 (patch) | |
tree | 8bb76dc144ec0b5190f9992fc69af59943eaa699 /Source/CursesDialog/cmCursesPathWidget.h | |
parent | 3171fe0afa7169c1e814a5c0e08b115002f0d3c3 (diff) | |
download | CMake-111be1801fcf50412e702be2d5966dbf52926b94.zip CMake-111be1801fcf50412e702be2d5966dbf52926b94.tar.gz CMake-111be1801fcf50412e702be2d5966dbf52926b94.tar.bz2 |
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/cmCursesPathWidget.h')
-rw-r--r-- | Source/CursesDialog/cmCursesPathWidget.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/CursesDialog/cmCursesPathWidget.h b/Source/CursesDialog/cmCursesPathWidget.h index 45c22a3..18d298a 100644 --- a/Source/CursesDialog/cmCursesPathWidget.h +++ b/Source/CursesDialog/cmCursesPathWidget.h @@ -9,8 +9,8 @@ implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License for more information. ============================================================================*/ -#ifndef __cmCursesPathWidget_h -#define __cmCursesPathWidget_h +#ifndef cmCursesPathWidget_h +#define cmCursesPathWidget_h #include "cmCursesStringWidget.h" @@ -37,4 +37,4 @@ protected: std::string::size_type CurrentIndex; }; -#endif // __cmCursesPathWidget_h +#endif // cmCursesPathWidget_h |