summaryrefslogtreecommitdiffstats
path: root/Source/QtDialog/CMakeSetupDialog.cxx
diff options
context:
space:
mode:
authorClinton Stimpson <clinton@elemtech.com>2007-11-08 21:47:00 (GMT)
committerClinton Stimpson <clinton@elemtech.com>2007-11-08 21:47:00 (GMT)
commit3cd1d6e9e1d34d59100c9992602ba45958f1824e (patch)
treea01a4742ae5da8ae15408c6d4b6a9861ca7c0c70 /Source/QtDialog/CMakeSetupDialog.cxx
parentaf46642debd4febc094ae06972daeb08d1e3c57d (diff)
downloadCMake-3cd1d6e9e1d34d59100c9992602ba45958f1824e.zip
CMake-3cd1d6e9e1d34d59100c9992602ba45958f1824e.tar.gz
CMake-3cd1d6e9e1d34d59100c9992602ba45958f1824e.tar.bz2
BUG: Don't enable generate if configure completed with errors.
ENH: Allow build w/ Qt configured with no STL support.
Diffstat (limited to 'Source/QtDialog/CMakeSetupDialog.cxx')
-rw-r--r--Source/QtDialog/CMakeSetupDialog.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/QtDialog/CMakeSetupDialog.cxx b/Source/QtDialog/CMakeSetupDialog.cxx
index 2bb470d..1ed4943 100644
--- a/Source/QtDialog/CMakeSetupDialog.cxx
+++ b/Source/QtDialog/CMakeSetupDialog.cxx
@@ -284,7 +284,7 @@ void CMakeSetupDialog::finishConfigure(int err)
tr("Error in configuration process, project files may be invalid"),
QMessageBox::Ok);
}
- if(!this->CacheValues->cacheModel()->modifiedValues())
+ else if(!this->CacheValues->cacheModel()->modifiedValues())
{
this->setGenerateEnabled(true);
}