From 39e07d7a175d5da0c1a2ebc905689705571d2084 Mon Sep 17 00:00:00 2001 From: Sebastian Holtermann Date: Wed, 30 Nov 2016 22:12:50 +0100 Subject: QtAutogen: Use upper case for MOC, UIC and RCC in messages --- Source/cmQtAutoGeneratorInitializer.cxx | 6 +++--- Source/cmQtAutoGenerators.cxx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/cmQtAutoGeneratorInitializer.cxx b/Source/cmQtAutoGeneratorInitializer.cxx index 76af466..de70d34 100644 --- a/Source/cmQtAutoGeneratorInitializer.cxx +++ b/Source/cmQtAutoGeneratorInitializer.cxx @@ -705,13 +705,13 @@ void cmQtAutoGeneratorInitializer::InitializeAutogenTarget( { std::vector toolNames; if (target->GetPropertyAsBool("AUTOMOC")) { - toolNames.push_back("moc"); + toolNames.push_back("MOC"); } if (target->GetPropertyAsBool("AUTOUIC")) { - toolNames.push_back("uic"); + toolNames.push_back("UIC"); } if (target->GetPropertyAsBool("AUTORCC")) { - toolNames.push_back("rcc"); + toolNames.push_back("RCC"); } std::string tools = toolNames[0]; diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index b497fb0..f90f0d5 100644 --- a/Source/cmQtAutoGenerators.cxx +++ b/Source/cmQtAutoGenerators.cxx @@ -1389,7 +1389,7 @@ bool cmQtAutoGenerators::GenerateQrc(const std::string& qrcInputFile, if (this->GenerateAll || generateQrc) { { - std::string msg = "Generating QRC source "; + std::string msg = "Generating RCC source "; msg += qrcOutputFile; this->LogBold(msg); } -- cgit v0.12