summaryrefslogtreecommitdiffstats
path: root/Source/QtDialog/QCMake.h
diff options
context:
space:
mode:
authorClinton Stimpson <clinton@elemtech.com>2007-11-09 20:18:49 (GMT)
committerClinton Stimpson <clinton@elemtech.com>2007-11-09 20:18:49 (GMT)
commit57e46c74d427e7d0ad19fa8671110908cf325cd9 (patch)
tree7cf188fae4d424ac0c384c3a65795eafd374dfc3 /Source/QtDialog/QCMake.h
parente5bb99e01077a8ac084bbd6dbf8e2f81390b5cd9 (diff)
downloadCMake-57e46c74d427e7d0ad19fa8671110908cf325cd9.zip
CMake-57e46c74d427e7d0ad19fa8671110908cf325cd9.tar.gz
CMake-57e46c74d427e7d0ad19fa8671110908cf325cd9.tar.bz2
BUG: Don't prompt for unsaved changes if no changes were made.
ENH: Error messages go to output window instead of message boxes.
Diffstat (limited to 'Source/QtDialog/QCMake.h')
-rw-r--r--Source/QtDialog/QCMake.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/QtDialog/QCMake.h b/Source/QtDialog/QCMake.h
index 0aeb8bc9..ad3f3f5 100644
--- a/Source/QtDialog/QCMake.h
+++ b/Source/QtDialog/QCMake.h
@@ -105,8 +105,6 @@ signals:
void propertiesChanged(const QCMakeCachePropertyList& vars);
/// signal when the generator changes
void generatorChanged(const QString& gen);
- /// signal when there is an error message
- void error(const QString& title, const QString& message, bool*);
/// signal when the source directory changes (binary directory already
/// containing a CMakeCache.txt file)
void sourceDirChanged(const QString& dir);
@@ -118,6 +116,8 @@ signals:
void generateDone(int error);
/// signal when there is an output message
void outputMessage(const QString& msg);
+ /// signal when there is an error message
+ void errorMessage(const QString& msg);
protected:
cmake* CMakeInstance;