diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-10-02 11:50:31 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-10-24 07:14:13 (GMT) |
commit | 97f1aa39da3e56ea4839e918f05928440d9d9dfa (patch) | |
tree | 9e276ad50e92368d340540fcc8e4871af550c7d5 | |
parent | 4abb111584c4f0738cd2858cfa7d3adee5248a83 (diff) | |
download | CMake-97f1aa39da3e56ea4839e918f05928440d9d9dfa.zip CMake-97f1aa39da3e56ea4839e918f05928440d9d9dfa.tar.gz CMake-97f1aa39da3e56ea4839e918f05928440d9d9dfa.tar.bz2 |
Rename method to reflect generic use.
-rw-r--r-- | Source/cmQtAutoGenerators.cxx | 4 | ||||
-rw-r--r-- | Source/cmQtAutoGenerators.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index 26e003f..391f7bb 100644 --- a/Source/cmQtAutoGenerators.cxx +++ b/Source/cmQtAutoGenerators.cxx @@ -472,7 +472,7 @@ bool cmQtAutoGenerators::Run(const char* targetDirectory, const char *config) cmGlobalGenerator* gg = this->CreateGlobalGenerator(&cm, targetDirectory); cmMakefile* makefile = gg->GetCurrentLocalGenerator()->GetMakefile(); - this->ReadAutomocInfoFile(makefile, targetDirectory, config); + this->ReadAutogenInfoFile(makefile, targetDirectory, config); this->ReadOldMocDefinitionsFile(makefile, targetDirectory); this->Init(); @@ -508,7 +508,7 @@ cmGlobalGenerator* cmQtAutoGenerators::CreateGlobalGenerator(cmake* cm, } -bool cmQtAutoGenerators::ReadAutomocInfoFile(cmMakefile* makefile, +bool cmQtAutoGenerators::ReadAutogenInfoFile(cmMakefile* makefile, const char* targetDirectory, const char *config) { diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h index ef38a5b..68a2d27 100644 --- a/Source/cmQtAutoGenerators.h +++ b/Source/cmQtAutoGenerators.h @@ -30,7 +30,7 @@ private: cmGlobalGenerator* CreateGlobalGenerator(cmake* cm, const char* targetDirectory); - bool ReadAutomocInfoFile(cmMakefile* makefile, + bool ReadAutogenInfoFile(cmMakefile* makefile, const char* targetDirectory, const char *config); bool ReadOldMocDefinitionsFile(cmMakefile* makefile, |