summaryrefslogtreecommitdiffstats
path: root/blinken/src/button.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
commit0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch)
tree2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /blinken/src/button.h
parent83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff)
downloadtdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz
tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'blinken/src/button.h')
-rw-r--r--blinken/src/button.h10
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;