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.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/blinken/src/button.cpp b/blinken/src/button.cpp
index 584feeb3..e36d2e19 100644
--- a/blinken/src/button.cpp
+++ b/blinken/src/button.cpp
@@ -10,14 +10,14 @@
#include <tdeaction.h>
#include <tdeapplication.h>
#include <tdeconfig.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <kdebug.h>
#include "button.h"
button::button(blinkenGame::color c) : m_selected(false), m_color(c)
{
- TDEConfig *kc = kapp->config();
+ TDEConfig *kc = tdeApp->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;
- TDEConfig *kc = kapp->config();
+ TDEConfig *kc = tdeApp->config();
kc->setGroup("General");
kc->writeEntry(getColorString(), key);
kc->sync();