diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-11-03 16:07:38 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-11-03 16:07:38 (GMT) |
commit | efbce2580b3b71f19f25c82ebc521e3717f5f64d (patch) | |
tree | 6dcf915fa196bb485ba1d55286c4fef405d7cbfb /Source/QtDialog | |
parent | 77ad85a6ab00959b972f5f2ad86382e2161b92b6 (diff) | |
download | CMake-efbce2580b3b71f19f25c82ebc521e3717f5f64d.zip CMake-efbce2580b3b71f19f25c82ebc521e3717f5f64d.tar.gz CMake-efbce2580b3b71f19f25c82ebc521e3717f5f64d.tar.bz2 |
ENH: fix compile error on windows
Diffstat (limited to 'Source/QtDialog')
-rw-r--r-- | Source/QtDialog/QCMakeCacheView.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/QtDialog/QCMakeCacheView.h b/Source/QtDialog/QCMakeCacheView.h index 692f451..cac9b4b 100644 --- a/Source/QtDialog/QCMakeCacheView.h +++ b/Source/QtDialog/QCMakeCacheView.h @@ -93,7 +93,7 @@ class QCMakeCachePathEditor : public QWidget Q_PROPERTY(QString value READ value USER true) public: QCMakeCachePathEditor(const QString& file, bool isFilePath, QWidget* p); - QString value() const { return this->LineEdit->text(); } + QString value() const { return this->LineEdit.text(); } protected slots: void chooseFile(); protected: |