Explorar el Código

ENH: fix compile error on windows

Bill Hoffman hace 18 años
padre
commit
efbce2580b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Source/QtDialog/QCMakeCacheView.h

+ 1 - 1
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: