mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 14:23:10 -05:00
Rename header guards to not start with double underscore
Use regex to find/replace: __(cm.*_h) \1 Then fix QCMake.h by hand.
This commit is contained in:
@@ -9,8 +9,8 @@
|
||||
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
See the License for more information.
|
||||
============================================================================*/
|
||||
#ifndef __cmCursesOptionsWidget_h
|
||||
#define __cmCursesOptionsWidget_h
|
||||
#ifndef cmCursesOptionsWidget_h
|
||||
#define cmCursesOptionsWidget_h
|
||||
|
||||
#include "cmCursesWidget.h"
|
||||
class cmCursesMainForm;
|
||||
@@ -36,4 +36,4 @@ protected:
|
||||
std::vector<std::string>::size_type CurrentOption;
|
||||
};
|
||||
|
||||
#endif // __cmCursesOptionsWidget_h
|
||||
#endif // cmCursesOptionsWidget_h
|
||||
|
||||
Reference in New Issue
Block a user