diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index 561e566b46..f2f1505e37 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 >& 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 b6bca8a615..c6fe3b6398 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 >& includedUis);