diff options
Diffstat (limited to 'juk/actioncollection.h')
-rw-r--r-- | juk/actioncollection.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/juk/actioncollection.h b/juk/actioncollection.h index 22eddd54..930f12aa 100644 --- a/juk/actioncollection.h +++ b/juk/actioncollection.h @@ -16,25 +16,25 @@ #ifndef JUK_ACTIONCOLLECTION_H #define JUK_ACTIONCOLLECTION_H -class KActionCollection; -class KAction; +class TDEActionCollection; +class TDEAction; namespace ActionCollection { /** * The global action collection for JuK. */ - KActionCollection *actions(); + TDEActionCollection *actions(); /** * Returns the action for the associated key from the global action * collection. */ - KAction *action(const char *key); + TDEAction *action(const char *key); /** * Returns the action for the associated key but includes a cast to the - * type \a T. i.e. KSelectAction *a = action<KSelectAction>("chooser"); + * type \a T. i.e. TDESelectAction *a = action<TDESelectAction>("chooser"); */ template <class T> T *action(const char *key) { |