Compile fix.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8220 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-12-10 09:26:18 +00:00
parent 2e18bf051a
commit aa2056f050
3 changed files with 8 additions and 0 deletions

View 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> 2003-12-09 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* lengthvalidator.[Ch] (LengthValidator): change the constructor to * lengthvalidator.[Ch] (LengthValidator): change the constructor to

View File

@ -17,6 +17,8 @@
#include "qt_helpers.h" #include "qt_helpers.h"
#include <qwidget.h>
using lyx::support::isStrDbl; using lyx::support::isStrDbl;
using std::string; using std::string;

View File

@ -15,6 +15,8 @@
#include "lyxlength.h" #include "lyxlength.h"
#include <qvalidator.h> #include <qvalidator.h>
class QWidget;
class Q_EXPORT LengthValidator : public QValidator class Q_EXPORT LengthValidator : public QValidator
{ {