diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:13:25 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:13:25 -0600 |
commit | 940c092f32d40263ad6b24f948eaf4c48b01e99a (patch) | |
tree | f5235b5c44e8aaedd3484a00551e29993d548590 /juk/actioncollection.h | |
parent | ced2058eaf8e5af831ebc02812a18937ff7e1de3 (diff) | |
download | tdemultimedia-940c092f32d40263ad6b24f948eaf4c48b01e99a.tar.gz tdemultimedia-940c092f32d40263ad6b24f948eaf4c48b01e99a.zip |
Rename a number of classes to enhance compatibility with KDE4
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) { |