OTHER: Fix syntax errors.

In standard C++ all member declarations must use an unqualified name for
the member itself. G++ 4.1 enforces this.
This commit is contained in:
Jonne Lehtinen 2006-07-17 15:52:05 -04:00 committed by Tobias Rundstrom
parent c3e9b3acd9
commit da102ae302
2 changed files with 3 additions and 3 deletions

View file

@ -27,8 +27,8 @@ class SkinDisplay : public QWidget
void mousePressEvent (QMouseEvent *); void mousePressEvent (QMouseEvent *);
void mouseMoveEvent (QMouseEvent *); void mouseMoveEvent (QMouseEvent *);
void paintEvent (QPaintEvent *event); void paintEvent (QPaintEvent *event);
void SkinDisplay::enterEvent (QEvent *event); void enterEvent (QEvent *event);
void SkinDisplay::leaveEvent (QEvent *event); void leaveEvent (QEvent *event);
QWidget *m_mw; QWidget *m_mw;
QWidget *m_tbar; QWidget *m_tbar;

2
Skin.h
View file

@ -251,7 +251,7 @@ class Skin : public QWidget
Skin() {}; Skin() {};
static Skin *singleton; static Skin *singleton;
QPixmap *Skin::getPixmap (const QString& file); QPixmap *getPixmap (const QString& file);
void BuildLetterMap (void); void BuildLetterMap (void);
void BuildButtons (void); void BuildButtons (void);
void BuildToggleButtons (void); void BuildToggleButtons (void);