summaryrefslogtreecommitdiffstats
path: root/Source/QtDialog/QCMake.cxx
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2010-09-01 14:22:08 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2010-09-01 17:09:08 (GMT)
commitfff9f6d6f74aa92d0bc4adf3a80a25b1b662458d (patch)
treecd9736d600c9a8606ed40493c33c825a1d0f3f30 /Source/QtDialog/QCMake.cxx
parent786e2695cb68402d44357002b438c95229c4fb19 (diff)
downloadCMake-fff9f6d6f74aa92d0bc4adf3a80a25b1b662458d.zip
CMake-fff9f6d6f74aa92d0bc4adf3a80a25b1b662458d.tar.gz
CMake-fff9f6d6f74aa92d0bc4adf3a80a25b1b662458d.tar.bz2
Rename flags again and use variablewatch for cli
Diffstat (limited to 'Source/QtDialog/QCMake.cxx')
-rw-r--r--Source/QtDialog/QCMake.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/QtDialog/QCMake.cxx b/Source/QtDialog/QCMake.cxx
index 1f9fa3d..c319cb4 100644
--- a/Source/QtDialog/QCMake.cxx
+++ b/Source/QtDialog/QCMake.cxx
@@ -30,7 +30,6 @@ QCMake::QCMake(QObject* p)
this->SuppressDevWarnings = false;
this->WarnUninitializedMode = false;
this->WarnUnusedMode = false;
- this->WarnUnusedAllMode = false;
qRegisterMetaType<QCMakeProperty>();
qRegisterMetaType<QCMakePropertyList>();
@@ -170,7 +169,6 @@ void QCMake::configure()
std::cerr << "set warn uninitialized " << this->WarnUninitializedMode << "\n";
this->CMakeInstance->SetWarnUninitialized(this->WarnUninitializedMode);
this->CMakeInstance->SetWarnUnused(this->WarnUnusedMode);
- this->CMakeInstance->SetDefaultToUsed(!this->WarnUnusedAllMode);
this->CMakeInstance->PreLoadCMakeFiles();
cmSystemTools::ResetErrorOccuredFlag();
@@ -434,8 +432,3 @@ void QCMake::setWarnUnusedMode(bool value)
{
this->WarnUnusedMode = value;
}
-
-void QCMake::setWarnUnusedAllMode(bool value)
-{
- this->WarnUnusedAllMode = value;
-}