diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2016-12-27 17:55:51 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-01-10 11:49:14 (GMT) |
commit | cf1d5a9cdba49a2e9f08879d756ae118b22bfc6a (patch) | |
tree | f9d5cc8d1a004ba72e19c7885433834e711c8a9a /Source | |
parent | f962275987e17cf94da663a919f52b6d0c8f44f4 (diff) | |
download | CMake-cf1d5a9cdba49a2e9f08879d756ae118b22bfc6a.zip CMake-cf1d5a9cdba49a2e9f08879d756ae118b22bfc6a.tar.gz CMake-cf1d5a9cdba49a2e9f08879d756ae118b22bfc6a.tar.bz2 |
AUTOGEN: Generators: Rename ParseForUic method
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmQtAutoGenerators.cxx | 8 | ||||
-rw-r--r-- | Source/cmQtAutoGenerators.h | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index 561e566..f2f1505 100644 --- a/Source/cmQtAutoGenerators.cxx +++ b/Source/cmQtAutoGenerators.cxx @@ -597,7 +597,7 @@ bool cmQtAutoGenerators::ParseSourceFile( } // Parse source contents for UIC - this->ParseForUic(absFilename, contentsString, includedUis); + this->ParseContentForUic(absFilename, contentsString, includedUis); // Continue with moc parsing on demand if (this->MocExecutable.empty()) { @@ -816,10 +816,10 @@ void cmQtAutoGenerators::ParseForUic( this->LogWarning(err.str()); return; } - this->ParseForUic(absFilename, contentsString, includedUis); + this->ParseContentForUic(absFilename, contentsString, includedUis); } -void cmQtAutoGenerators::ParseForUic( +void cmQtAutoGenerators::ParseContentForUic( const std::string& absFilename, const std::string& contentsString, std::map<std::string, std::vector<std::string> >& includedUis) { @@ -898,7 +898,7 @@ void cmQtAutoGenerators::ParseHeaders( ".cpp"; } } - this->ParseForUic(headerName, contents, includedUis); + this->ParseContentForUic(headerName, contents, includedUis); } } diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h index b6bca8a..c6fe3b6 100644 --- a/Source/cmQtAutoGenerators.h +++ b/Source/cmQtAutoGenerators.h @@ -68,7 +68,7 @@ private: bool requiresMocing(const std::string& text, std::string& macroName); - void ParseForUic( + void ParseContentForUic( const std::string& fileName, const std::string& contentsString, std::map<std::string, std::vector<std::string> >& includedUis); |