summaryrefslogtreecommitdiff
path: root/Source/QtDialog/QCMakeCacheView.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-11-03 12:07:38 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2007-11-03 12:07:38 -0400
commitefbce2580b3b71f19f25c82ebc521e3717f5f64d (patch)
tree6dcf915fa196bb485ba1d55286c4fef405d7cbfb /Source/QtDialog/QCMakeCacheView.h
parent77ad85a6ab00959b972f5f2ad86382e2161b92b6 (diff)
downloadcmake-efbce2580b3b71f19f25c82ebc521e3717f5f64d.tar.gz
ENH: fix compile error on windows
Diffstat (limited to 'Source/QtDialog/QCMakeCacheView.h')
-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 692f451212..cac9b4b02e 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: