From: Angus Leeming Date: Tue, 14 Dec 2004 11:05:44 +0000 (+0000) Subject: remove invalid Q_EXPORT declaration as it breaks compilation of the X-Git-Tag: 1.6.10~14744 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=8ac51379612f64896102f83e3b5b55b3bed6dc20;p=features.git remove invalid Q_EXPORT declaration as it breaks compilation of the generated qgridview_moc.C on Windows machines. Has no effect on *nix machines where Q_EXPORT expands to an empty string. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9365 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt2/ChangeLog b/src/frontends/qt2/ChangeLog index f53a77e024..f36901ad94 100644 --- a/src/frontends/qt2/ChangeLog +++ b/src/frontends/qt2/ChangeLog @@ -1,3 +1,10 @@ +2004-12-14 Angus Leeming + + * qgridview.h (class QGridView): remove invalid Q_EXPORT declaration + as it breaks compilation of the generated qgridview_moc.C on + Windows machines. Has no effect on *nix machines where Q_EXPORT expands + to an empty string. + 2004-12-14 Angus Leeming * Makefile.am (AM_CPPFLAGS): diff --git a/src/frontends/qt2/qgridview.h b/src/frontends/qt2/qgridview.h index a50235a2f1..89a2fa3730 100644 --- a/src/frontends/qt2/qgridview.h +++ b/src/frontends/qt2/qgridview.h @@ -1,5 +1,5 @@ /********************************************************************** -** $Id: qgridview.h,v 1.2 2002/12/01 22:59:19 larsbj Exp $ +** $Id: qgridview.h,v 1.3 2004/12/14 11:05:44 leeming Exp $ ** ** Definition of QGridView class ** @@ -44,7 +44,7 @@ class QGridViewPrivate; -class Q_EXPORT QGridView : public QScrollView +class QGridView : public QScrollView { Q_OBJECT Q_PROPERTY( int numRows READ numRows WRITE setNumRows )