From efbce2580b3b71f19f25c82ebc521e3717f5f64d Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Sat, 3 Nov 2007 12:07:38 -0400 Subject: ENH: fix compile error on windows --- Source/QtDialog/QCMakeCacheView.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v0.12