mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Squash warning about variables being initialized in the wrong order.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8163 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
835002e272
commit
0ad320dce9
@ -1,3 +1,8 @@
|
|||||||
|
2003-11-30 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
|
* QContentPane.C (QContentPane): squash warning about variables
|
||||||
|
being initialized in the wrong order.
|
||||||
|
|
||||||
2003-11-29 Juergen Spitzmueller <j.spitzmueller@gmx.de>
|
2003-11-29 Juergen Spitzmueller <j.spitzmueller@gmx.de>
|
||||||
|
|
||||||
* qt_helpers.C (widgetsToLength): handle glue lengths
|
* qt_helpers.C (widgetsToLength): handle glue lengths
|
||||||
|
@ -76,7 +76,7 @@ mouse_button::state q_motion_state(Qt::ButtonState state)
|
|||||||
|
|
||||||
QContentPane::QContentPane(QWorkArea * parent)
|
QContentPane::QContentPane(QWorkArea * parent)
|
||||||
: QWidget(parent, "content_pane", WRepaintNoErase),
|
: QWidget(parent, "content_pane", WRepaintNoErase),
|
||||||
wa_(parent), track_scrollbar_(true)
|
track_scrollbar_(true), wa_(parent)
|
||||||
{
|
{
|
||||||
setFocusPolicy(QWidget::WheelFocus);
|
setFocusPolicy(QWidget::WheelFocus);
|
||||||
setFocus();
|
setFocus();
|
||||||
|
@ -52,7 +52,7 @@ public:
|
|||||||
QPixmap * pixmap() const { return pixmap_.get(); }
|
QPixmap * pixmap() const { return pixmap_.get(); }
|
||||||
/// track scrollbar signals?
|
/// track scrollbar signals?
|
||||||
void trackScrollbar(bool track_on);
|
void trackScrollbar(bool track_on);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/// repaint part of the widget
|
/// repaint part of the widget
|
||||||
void paintEvent(QPaintEvent * e);
|
void paintEvent(QPaintEvent * e);
|
||||||
|
Loading…
Reference in New Issue
Block a user