diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-03-12 02:51:56 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-03-12 02:51:56 (GMT) |
commit | 420725077cc9326d5b8c610f2770994a177eed15 (patch) | |
tree | 955bf582c6b9d25475b1c98a98a0ba49b587f2d9 /Source/QtDialog/QCMake.h | |
parent | fc26c1459caa61c79b9076e3ca85905e45bbcbc9 (diff) | |
download | CMake-420725077cc9326d5b8c610f2770994a177eed15.zip CMake-420725077cc9326d5b8c610f2770994a177eed15.tar.gz CMake-420725077cc9326d5b8c610f2770994a177eed15.tar.bz2 |
ENH: add ability to suppress dev warnings to gui code
Diffstat (limited to 'Source/QtDialog/QCMake.h')
-rw-r--r-- | Source/QtDialog/QCMake.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/QtDialog/QCMake.h b/Source/QtDialog/QCMake.h index ad3f3f5..ab7040c 100644 --- a/Source/QtDialog/QCMake.h +++ b/Source/QtDialog/QCMake.h @@ -65,7 +65,7 @@ class QCMake : public QObject public: QCMake(QObject* p=0); ~QCMake(); - + void SetSuppressDevWarnings(bool value); public slots: /// load the cache file in a directory void loadCache(const QString& dir); @@ -125,7 +125,7 @@ protected: static void progressCallback(const char* msg, float percent, void* cd); static void errorCallback(const char* msg, const char* title, bool&, void* cd); - + bool SuppressDevWarnings; QString SourceDirectory; QString BinaryDirectory; QString Generator; |