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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/blinken/src/button.cpp b/blinken/src/button.cpp
index b8eef48a..36f18511 100644
--- a/blinken/src/button.cpp
+++ b/blinken/src/button.cpp
@@ -17,7 +17,7 @@
button::button(blinkenGame::color c) : m_selected(false), m_color(c)
{
- KConfig *kc = kapp->config();
+ TDEConfig *kc = kapp->config();
kc->setGroup("General");
TQString cs = getColorString();
TQString pixmap = TQString("images/%1h.png").arg(cs);
@@ -58,7 +58,7 @@ void button::setShortcut(int key)
m_key = key;
m_selected = false;
- KConfig *kc = kapp->config();
+ TDEConfig *kc = kapp->config();
kc->setGroup("General");
kc->writeEntry(getColorString(), key);
kc->sync();