[cmake-commits] hoffman committed QCMakeCacheView.h 1.3 1.4

cmake-commits at cmake.org cmake-commits at cmake.org
Sat Nov 3 12:07:40 EDT 2007


Update of /cvsroot/CMake/CMake/Source/QtDialog
In directory public:/mounts/ram/cvs-serv13615

Modified Files:
	QCMakeCacheView.h 
Log Message:
ENH: fix compile error on windows


Index: QCMakeCacheView.h
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/QtDialog/QCMakeCacheView.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- QCMakeCacheView.h	3 Nov 2007 14:30:52 -0000	1.3
+++ QCMakeCacheView.h	3 Nov 2007 16:07:38 -0000	1.4
@@ -93,7 +93,7 @@
   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:



More information about the Cmake-commits mailing list