summaryrefslogtreecommitdiffstats
path: root/Source/cmQtAutoGeneratorInitializer.cxx
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2016-11-30 09:24:19 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2016-12-06 14:59:25 (GMT)
commitfc055c04e1ebab4b3e1f8209f8e4697ccee5a58f (patch)
tree25cd6900e6e95bdf7d212228016c2a64c6ca0c9e /Source/cmQtAutoGeneratorInitializer.cxx
parent9eba41479bc9f60cd810fa1786cb3baf3d570266 (diff)
downloadCMake-fc055c04e1ebab4b3e1f8209f8e4697ccee5a58f.zip
CMake-fc055c04e1ebab4b3e1f8209f8e4697ccee5a58f.tar.gz
CMake-fc055c04e1ebab4b3e1f8209f8e4697ccee5a58f.tar.bz2
QtAutogen: Rcc related function rename
Diffstat (limited to 'Source/cmQtAutoGeneratorInitializer.cxx')
-rw-r--r--Source/cmQtAutoGeneratorInitializer.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmQtAutoGeneratorInitializer.cxx b/Source/cmQtAutoGeneratorInitializer.cxx
index 3de9159..340e9c3 100644
--- a/Source/cmQtAutoGeneratorInitializer.cxx
+++ b/Source/cmQtAutoGeneratorInitializer.cxx
@@ -331,7 +331,7 @@ static void SetupAutoUicTarget(
}
}
-static std::string GetRccExecutable(cmGeneratorTarget const* target)
+static std::string RccGetExecutable(cmGeneratorTarget const* target)
{
cmLocalGenerator* lg = target->GetLocalGenerator();
cmMakefile* makefile = target->Target->GetMakefile();
@@ -429,7 +429,7 @@ static std::string utilStripCR(std::string const& line)
static bool RccListInputsQt5(cmSourceFile* sf, cmGeneratorTarget const* target,
std::vector<std::string>& depends)
{
- std::string rccCommand = GetRccExecutable(target);
+ std::string rccCommand = RccGetExecutable(target);
bool hasDashDashList = false;
// Read rcc features
@@ -648,7 +648,7 @@ static void RccSetupAutoTarget(cmGeneratorTarget const* target)
cmOutputConverter::EscapeForCMake(rccFileOptions).c_str());
makefile->AddDefinition("_qt_rcc_executable",
- GetRccExecutable(target).c_str());
+ RccGetExecutable(target).c_str());
}
void cmQtAutoGeneratorInitializer::InitializeAutogenSources(