diff options
Diffstat (limited to 'blinken/src/button.h')
-rw-r--r-- | blinken/src/button.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/blinken/src/button.h b/blinken/src/button.h index 80300c06..d267b5b1 100644 --- a/blinken/src/button.h +++ b/blinken/src/button.h @@ -10,7 +10,7 @@ #ifndef BUTTON_H #define BUTTON_H -#include <qobject.h> +#include <tqobject.h> #include "blinkengame.h" @@ -25,16 +25,16 @@ class button ~button(); void setShortcut(int key); - QString shortcut() const; + TQString shortcut() const; int key() const; void setSelected(bool b); bool selected() const; - QPixmap *pixmap() const; + TQPixmap *pixmap() const; private: - QString getColorString() const; + TQString getColorString() const; - QPixmap *m_highlighted; + TQPixmap *m_highlighted; bool m_selected; int m_key; blinkenGame::color m_color; |