diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-02-16 16:53:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-02-21 15:12:53 (GMT) |
commit | f379fdbb9ee17b62ac8b4a8d4b9fab562ba37253 (patch) | |
tree | 79e5b7ffc3e257de84f29d34e0d3c9db196d9842 /Source | |
parent | ddf940725e8af095b1c02606aeea64cc9baaf572 (diff) | |
download | CMake-f379fdbb9ee17b62ac8b4a8d4b9fab562ba37253.zip CMake-f379fdbb9ee17b62ac8b4a8d4b9fab562ba37253.tar.gz CMake-f379fdbb9ee17b62ac8b4a8d4b9fab562ba37253.tar.bz2 |
Autogen: Synchronize header/source argument names
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmQtAutoGenerators.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h index 8206f23..895c50a 100644 --- a/Source/cmQtAutoGenerators.h +++ b/Source/cmQtAutoGenerators.h @@ -54,19 +54,19 @@ private: bool ParseSourceFile( const std::string& absFilename, - std::map<std::string, std::string>& includedMocs, + std::map<std::string, std::string>& mocsIncluded, std::map<std::string, std::vector<std::string> >& includedUis, bool relaxed); void SearchHeadersForSourceFile(const std::string& absFilename, - std::set<std::string>& absHeadersMoc, - std::set<std::string>& absHeadersUic) const; + std::set<std::string>& mocHeaderFiles, + std::set<std::string>& uicHeaderFiles) const; void ParseHeaders( - const std::set<std::string>& absHeadersMoc, - const std::set<std::string>& absHeadersUic, - const std::map<std::string, std::string>& includedMocs, - std::map<std::string, std::string>& notIncludedMocs, + const std::set<std::string>& mocHeaderFiles, + const std::set<std::string>& uicHeaderFiles, + const std::map<std::string, std::string>& mocsIncluded, + std::map<std::string, std::string>& mocsNotIncluded, std::map<std::string, std::vector<std::string> >& includedUis); void ParseContentForUic( @@ -75,13 +75,13 @@ private: bool ParseContentForMoc(const std::string& absFilename, const std::string& contentsString, - std::map<std::string, std::string>& includedMocs, + std::map<std::string, std::string>& mocsIncluded, bool relaxed); // - Moc file generation bool MocGenerateAll( - const std::map<std::string, std::string>& includedMocs, - const std::map<std::string, std::string>& notIncludedMocs); + const std::map<std::string, std::string>& mocsIncluded, + const std::map<std::string, std::string>& mocsNotIncluded); bool MocGenerateFile(const std::string& sourceFile, const std::string& mocFileName, const std::string& subDirPrefix); |