diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-01-11 15:08:24 +0100 |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-01-13 00:00:44 +0100 |
commit | edf0b8a52bd4db8557adaf11d7096f7982c373aa (patch) | |
tree | cc9976ecd38bb0025e3c70ea6660cde39ce39e06 /Source/cmQtAutoGenerators.h | |
parent | 06430919f4b903ba256ce158caf223f515faa8a4 (diff) | |
download | cmake-edf0b8a52bd4db8557adaf11d7096f7982c373aa.tar.gz |
Autogen: Generators: Rename GenerateFoo methods to FooGenerate
Diffstat (limited to 'Source/cmQtAutoGenerators.h')
-rw-r--r-- | Source/cmQtAutoGenerators.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h index 3223c6d9b8..c2be22cd34 100644 --- a/Source/cmQtAutoGenerators.h +++ b/Source/cmQtAutoGenerators.h @@ -72,23 +72,24 @@ private: bool relaxed); // - Moc file generation - bool GenerateMocFiles( + bool MocGenerateAll( const std::map<std::string, std::string>& includedMocs, const std::map<std::string, std::string>& notIncludedMocs); - bool GenerateMoc(const std::string& sourceFile, - const std::string& mocFileName, - const std::string& subDirPrefix); + bool MocGenerateFile(const std::string& sourceFile, + const std::string& mocFileName, + const std::string& subDirPrefix); // - Uic file generation - bool GenerateUiFiles( + bool UicGenerateAll( const std::map<std::string, std::vector<std::string> >& includedUis); - bool GenerateUi(const std::string& realName, const std::string& uiInputFile, - const std::string& uiOutputFile); + bool UicGenerateFile(const std::string& realName, + const std::string& uiInputFile, + const std::string& uiOutputFile); // - Qrc file generation - bool GenerateQrcFiles(); - bool GenerateQrc(const std::string& qrcInputFile, - const std::string& qrcOutputFile, bool unique_n); + bool QrcGenerateAll(); + bool QrcGenerateFile(const std::string& qrcInputFile, + const std::string& qrcOutputFile, bool unique_n); // - Logging void LogErrorNameCollision( |