]> git.lyx.org Git - features.git/commitdiff
Compile fix.
authorAngus Leeming <leeming@lyx.org>
Wed, 10 Dec 2003 09:26:18 +0000 (09:26 +0000)
committerAngus Leeming <leeming@lyx.org>
Wed, 10 Dec 2003 09:26:18 +0000 (09:26 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8220 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt2/ChangeLog
src/frontends/qt2/lengthvalidator.C
src/frontends/qt2/lengthvalidator.h

index 37c79026e38c737cd67e65536516b18134e03736..2751ddb8dbdaeaac9caf6147e656c137d95b4420 100644 (file)
@@ -1,3 +1,7 @@
+2003-12-10  Angus Leeming  <leeming@lyx.org>
+
+       * lengthvalidator.[Ch]: make <qwidget.h> visible to the class.
+
 2003-12-09  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
 
        * lengthvalidator.[Ch] (LengthValidator): change the constructor to
index 24036fdc948d0ba32e54e57519dff8e448a6d031..e08291b3975dc3919f93cc3f0d0b21d50825b983 100644 (file)
@@ -17,6 +17,8 @@
 
 #include "qt_helpers.h"
 
+#include <qwidget.h>
+
 
 using lyx::support::isStrDbl;
 using std::string;
index dc5a9af68cc908ca81eb3d72fbc65e13a08480fb..48bf2ff591ab7c73e577bb626497dc2eb40046df 100644 (file)
@@ -15,6 +15,8 @@
 #include "lyxlength.h"
 #include <qvalidator.h>
 
+class QWidget;
+
 
 class Q_EXPORT LengthValidator : public QValidator
 {