summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2016-04-18 10:34:10 (GMT)
committerBrad King <brad.king@kitware.com>2016-04-19 16:49:47 (GMT)
commit3ea1d09082de6b5ed4fbb7f9be04a0172c01c0be (patch)
tree46bfa999cbd903e5192c37a79c2e817219592573
parent8ced8bb95aee78ece751259f9cce23786fe4a1b2 (diff)
downloadCMake-3ea1d09082de6b5ed4fbb7f9be04a0172c01c0be.zip
CMake-3ea1d09082de6b5ed4fbb7f9be04a0172c01c0be.tar.gz
CMake-3ea1d09082de6b5ed4fbb7f9be04a0172c01c0be.tar.bz2
Autogen: Rename method GenerateQrc{ => Files}
-rw-r--r--Source/cmQtAutoGenerators.cxx4
-rw-r--r--Source/cmQtAutoGenerators.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx
index 65892fe..576de7a 100644
--- a/Source/cmQtAutoGenerators.cxx
+++ b/Source/cmQtAutoGenerators.cxx
@@ -612,7 +612,7 @@ bool cmQtAutoGenerators::RunAutogen(cmMakefile* makefile)
if(!this->RccExecutable.empty())
{
- this->GenerateQrc();
+ this->GenerateQrcFiles();
}
std::stringstream outStream;
@@ -1264,7 +1264,7 @@ bool cmQtAutoGenerators::InputFilesNewerThanQrc(const std::string& qrcFile,
return false;
}
-bool cmQtAutoGenerators::GenerateQrc()
+bool cmQtAutoGenerators::GenerateQrcFiles()
{
for(std::vector<std::string>::const_iterator si = this->RccSources.begin();
si != this->RccSources.end(); ++si)
diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h
index 408ca14..5b33d16 100644
--- a/Source/cmQtAutoGenerators.h
+++ b/Source/cmQtAutoGenerators.h
@@ -42,7 +42,7 @@ private:
bool GenerateMoc(const std::string& sourceFile,
const std::string& mocFileName);
bool GenerateUi(const std::string& realName, const std::string& uiFileName);
- bool GenerateQrc();
+ bool GenerateQrcFiles();
void ParseCppFile(const std::string& absFilename,
const std::vector<std::string>& headerExtensions,
std::map<std::string, std::string>& includedMocs,