Fixed togglebuttons

This commit is contained in:
Tobias Rundstrom 2006-02-19 16:25:08 -03:00
parent b8ec3a6cae
commit 1013c8dbeb
2 changed files with 19 additions and 8 deletions

View file

@ -14,7 +14,7 @@ class Button : public PixWidget
~Button ();
public slots:
void setPixmaps(Skin *skin);
void setPixmaps (Skin *skin);
signals:
void clicked (void);
@ -55,6 +55,8 @@ class ToggleButton : public Button
QPixmap m_pixmap_off_pressed;
bool m_toggled_on;
void setCurrentPix ();
};
#endif