summaryrefslogtreecommitdiffstats
path: root/juk/actioncollection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'juk/actioncollection.cpp')
-rw-r--r--juk/actioncollection.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/juk/actioncollection.cpp b/juk/actioncollection.cpp
index 6290d6ee..6ec753fd 100644
--- a/juk/actioncollection.cpp
+++ b/juk/actioncollection.cpp
@@ -20,19 +20,19 @@
namespace ActionCollection
{
- KActionCollection *actions()
+ TDEActionCollection *actions()
{
- static KActionCollection *a =
- new KActionCollection(static_cast<TQWidget *>(0), "JuK Action Collection");
+ static TDEActionCollection *a =
+ new TDEActionCollection(static_cast<TQWidget *>(0), "JuK Action Collection");
return a;
}
- KAction *action(const char *key)
+ TDEAction *action(const char *key)
{
#ifndef NO_DEBUG
- KAction *a = actions()->action(key);
+ TDEAction *a = actions()->action(key);
if(!a)
- kdWarning(65432) << "KAction \"" << key << "\" is not defined yet." << endl;
+ kdWarning(65432) << "TDEAction \"" << key << "\" is not defined yet." << endl;
return a;
#else
return actions()->action(key);