summaryrefslogtreecommitdiffstats
path: root/Source/QtDialog
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-11-03 16:07:38 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-11-03 16:07:38 (GMT)
commitefbce2580b3b71f19f25c82ebc521e3717f5f64d (patch)
tree6dcf915fa196bb485ba1d55286c4fef405d7cbfb /Source/QtDialog
parent77ad85a6ab00959b972f5f2ad86382e2161b92b6 (diff)
downloadCMake-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.h2
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: