summaryrefslogtreecommitdiffstats
path: root/Source/cmcmd.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-10-02 11:39:50 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-10-24 07:14:12 (GMT)
commit52d5d4e9154644597630ed844a254dfb8de524dd (patch)
treeef64d20fc624fe7d7f23eaf68447a64454fa42d7 /Source/cmcmd.cxx
parent5c058c8f12742dcb96b2e22b43208f345a865fbf (diff)
downloadCMake-52d5d4e9154644597630ed844a254dfb8de524dd.zip
CMake-52d5d4e9154644597630ed844a254dfb8de524dd.tar.gz
CMake-52d5d4e9154644597630ed844a254dfb8de524dd.tar.bz2
Rename the cmQtAutoGenerator instances to reflect coming features.
Diffstat (limited to 'Source/cmcmd.cxx')
-rw-r--r--Source/cmcmd.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmcmd.cxx b/Source/cmcmd.cxx
index 2fba5dc..79a3969 100644
--- a/Source/cmcmd.cxx
+++ b/Source/cmcmd.cxx
@@ -634,10 +634,10 @@ int cmcmd::ExecuteCMakeCommand(std::vector<std::string>& args)
}
else if (args[1] == "cmake_automoc")
{
- cmQtAutoGenerators automoc;
+ cmQtAutoGenerators autogen;
const char *config = args[3].empty() ? 0 : args[3].c_str();
- bool automocSuccess = automoc.Run(args[2].c_str(), config);
- return automocSuccess ? 0 : 1;
+ bool autogenSuccess = autogen.Run(args[2].c_str(), config);
+ return autogenSuccess ? 0 : 1;
}
#endif