summaryrefslogtreecommitdiffstats
path: root/blinken
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:12:18 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:12:18 -0600
commitee52bb567f32fefdcf06e083c76562ea40ccf174 (patch)
tree8926667faaed3a18bec210ec14ffb9392ea8930d /blinken
parent088cc453ec425bf86d610880d09645ea166a14fa (diff)
downloadtdeedu-ee52bb567f32fefdcf06e083c76562ea40ccf174.tar.gz
tdeedu-ee52bb567f32fefdcf06e083c76562ea40ccf174.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'blinken')
-rw-r--r--blinken/src/blinken.cpp2
-rw-r--r--blinken/src/blinken.h2
-rw-r--r--blinken/src/button.cpp2
-rw-r--r--blinken/src/button.h6
4 files changed, 6 insertions, 6 deletions
diff --git a/blinken/src/blinken.cpp b/blinken/src/blinken.cpp
index 54d45532..5e00cd64 100644
--- a/blinken/src/blinken.cpp
+++ b/blinken/src/blinken.cpp
@@ -234,7 +234,7 @@ void blinken::keyPressEvent(TQKeyEvent *e)
}
else
{
- KShortcut ks(e -> key());
+ TDEShortcut ks(e -> key());
if (!ks.toString().isEmpty())
{
bool different = true;
diff --git a/blinken/src/blinken.h b/blinken/src/blinken.h
index 8f3241be..84fd3cfe 100644
--- a/blinken/src/blinken.h
+++ b/blinken/src/blinken.h
@@ -16,7 +16,7 @@
class TQTimer;
-class KAction;
+class TDEAction;
class KHelpMenu;
class button;
diff --git a/blinken/src/button.cpp b/blinken/src/button.cpp
index 16d5d91e..0bcc845a 100644
--- a/blinken/src/button.cpp
+++ b/blinken/src/button.cpp
@@ -66,7 +66,7 @@ void button::setShortcut(int key)
TQString button::shortcut() const
{
- return KShortcut(m_key).toString();
+ return TDEShortcut(m_key).toString();
}
int button::key() const
diff --git a/blinken/src/button.h b/blinken/src/button.h
index d267b5b1..6137c55c 100644
--- a/blinken/src/button.h
+++ b/blinken/src/button.h
@@ -14,9 +14,9 @@
#include "blinkengame.h"
-class KAction;
-class KActionCollection;
-class KShortcut;
+class TDEAction;
+class TDEActionCollection;
+class TDEShortcut;
class button
{