mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-24 13:48:59 +00:00
Ensure that the header files can be compiled stand-alone.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7679 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7070d9305c
commit
661921bca3
@ -1,3 +1,11 @@
|
|||||||
|
2003-09-05 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
|
* QCitation.h:
|
||||||
|
* QGraphics.h:
|
||||||
|
* QPrefs.h:
|
||||||
|
* qscreen.[Ch]:
|
||||||
|
ensure that the header files can be compiled stand-alone.
|
||||||
|
|
||||||
2003-09-05 Angus Leeming <leeming@lyx.org>
|
2003-09-05 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
* *.C: strip out redundant #includes. (352 in total.)
|
* *.C: strip out redundant #includes. (352 in total.)
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
|
|
||||||
|
|
||||||
#include "QDialogView.h"
|
#include "QDialogView.h"
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
|
||||||
class QListBox;
|
class QListBox;
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
|
|
||||||
|
|
||||||
#include "QDialogView.h"
|
#include "QDialogView.h"
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
|
||||||
class ControlGraphics;
|
class ControlGraphics;
|
||||||
|
@ -15,9 +15,9 @@
|
|||||||
|
|
||||||
#include "converter.h"
|
#include "converter.h"
|
||||||
#include "format.h"
|
#include "format.h"
|
||||||
|
#include "ControlPrefs.h"
|
||||||
|
|
||||||
#include "Qt2Base.h"
|
#include "Qt2Base.h"
|
||||||
#include "ControlPrefs.h"
|
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
@ -45,6 +45,12 @@ QScreen::~QScreen()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
WorkArea & QScreen::workarea() const
|
||||||
|
{
|
||||||
|
return owner_;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void QScreen::repaint()
|
void QScreen::repaint()
|
||||||
{
|
{
|
||||||
QWidget * content = owner_.getContent();
|
QWidget * content = owner_.getContent();
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#include <qrect.h>
|
#include <qrect.h>
|
||||||
#include <boost/scoped_ptr.hpp>
|
#include <boost/scoped_ptr.hpp>
|
||||||
|
|
||||||
|
class QWorkArea;
|
||||||
class WorkArea;
|
class WorkArea;
|
||||||
|
|
||||||
|
|
||||||
@ -31,7 +32,7 @@ public:
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
/// get the work area
|
/// get the work area
|
||||||
virtual WorkArea & workarea() const { return owner_; }
|
virtual WorkArea & workarea() const;
|
||||||
|
|
||||||
/// repaint the whole content immediately
|
/// repaint the whole content immediately
|
||||||
void repaint();
|
void repaint();
|
||||||
|
Loading…
Reference in New Issue
Block a user