summaryrefslogtreecommitdiffstats
path: root/blinken/src/button.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'blinken/src/button.cpp')
-rw-r--r--blinken/src/button.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/blinken/src/button.cpp b/blinken/src/button.cpp
index 406112eb..052ef6ed 100644
--- a/blinken/src/button.cpp
+++ b/blinken/src/button.cpp
@@ -20,24 +20,24 @@ button::button(blinkenGame::color c) : m_selected(false), m_color(c)
KConfig *kc = kapp->config();
kc->setGroup("General");
TQString cs = getColorString();
- TQString pixmap = TQString("images/%1h.png").arg(cs);
+ TQString pixmap = TQString("images/%1h.png").tqarg(cs);
switch (c)
{
case blinkenGame::blue:
- m_key = kc->readNumEntry(cs, Qt::Key_3);
+ m_key = kc->readNumEntry(cs, TQt::Key_3);
break;
case blinkenGame::yellow:
- m_key = kc->readNumEntry(cs, Qt::Key_1);
+ m_key = kc->readNumEntry(cs, TQt::Key_1);
break;
case blinkenGame::red:
- m_key = kc->readNumEntry(cs, Qt::Key_2);
+ m_key = kc->readNumEntry(cs, TQt::Key_2);
break;
case blinkenGame::green:
- m_key = kc->readNumEntry(cs, Qt::Key_4);
+ m_key = kc->readNumEntry(cs, TQt::Key_4);
break;
default:
@@ -115,5 +115,5 @@ TQString button::getColorString() const
}
// never happens
- return TQString::null;
+ return TQString();
}