summaryrefslogtreecommitdiffstats
path: root/Source/cmQtAutoGenGlobalInitializer.cxx
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-02-26 18:33:26 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-02-26 18:33:26 (GMT)
commit63191b169e28630db586ad7c975823cb985d6a10 (patch)
tree191cf30a15ae08370e346e7be35300b0156e2b03 /Source/cmQtAutoGenGlobalInitializer.cxx
parent78ff8d573777c099aea5bd2eb92d9866c0d85952 (diff)
downloadCMake-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/cmQtAutoGenGlobalInitializer.cxx')
-rw-r--r--Source/cmQtAutoGenGlobalInitializer.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmQtAutoGenGlobalInitializer.cxx b/Source/cmQtAutoGenGlobalInitializer.cxx
index 3ad91ee..7bd0e52 100644
--- a/Source/cmQtAutoGenGlobalInitializer.cxx
+++ b/Source/cmQtAutoGenGlobalInitializer.cxx
@@ -74,9 +74,9 @@ cmQtAutoGenGlobalInitializer::cmQtAutoGenGlobalInitializer(
continue;
}
- bool const moc = target->GetPropertyAsBool("AUTOMOC");
- bool const uic = target->GetPropertyAsBool("AUTOUIC");
- bool const rcc = target->GetPropertyAsBool("AUTORCC");
+ bool const moc = target->GetPropertyAsBool(cmQtAutoGen::GenAUTOMOC);
+ bool const uic = target->GetPropertyAsBool(cmQtAutoGen::GenAUTOUIC);
+ bool const rcc = target->GetPropertyAsBool(cmQtAutoGen::GenAUTORCC);
if (moc || uic || rcc) {
std::string const mocExec =
target->GetSafeProperty("AUTOMOC_EXECUTABLE");