diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-02-26 18:33:26 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-02-26 18:33:26 (GMT) |
commit | 63191b169e28630db586ad7c975823cb985d6a10 (patch) | |
tree | 191cf30a15ae08370e346e7be35300b0156e2b03 /Source/cmQtAutoGen.h | |
parent | 78ff8d573777c099aea5bd2eb92d9866c0d85952 (diff) | |
download | CMake-63191b169e28630db586ad7c975823cb985d6a10.zip CMake-63191b169e28630db586ad7c975823cb985d6a10.tar.gz CMake-63191b169e28630db586ad7c975823cb985d6a10.tar.bz2 |
Autogen: Use more readable variable names for static const AUTO* strings
Diffstat (limited to 'Source/cmQtAutoGen.h')
-rw-r--r-- | Source/cmQtAutoGen.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/cmQtAutoGen.h b/Source/cmQtAutoGen.h index e62a947..6cc8df1 100644 --- a/Source/cmQtAutoGen.h +++ b/Source/cmQtAutoGen.h @@ -52,14 +52,14 @@ public: /// @brief Nested lists separator static std::string const ListSep; // Generator names - static std::string const GenNameGen; - static std::string const GenNameMoc; - static std::string const GenNameUic; - static std::string const GenNameRcc; - static std::string const GenNameGenUpper; - static std::string const GenNameMocUpper; - static std::string const GenNameUicUpper; - static std::string const GenNameRccUpper; + static std::string const GenAutoGen; + static std::string const GenAutoMoc; + static std::string const GenAutoUic; + static std::string const GenAutoRcc; + static std::string const GenAUTOGEN; + static std::string const GenAUTOMOC; + static std::string const GenAUTOUIC; + static std::string const GenAUTORCC; /// @brief Maximum number of parallel threads/processes in a generator static unsigned int const ParallelMax; |