summaryrefslogtreecommitdiffstats
path: root/kplayer/kplayeractionlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'kplayer/kplayeractionlist.h')
-rw-r--r--kplayer/kplayeractionlist.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kplayer/kplayeractionlist.h b/kplayer/kplayeractionlist.h
index 86ee8c8..e443d52 100644
--- a/kplayer/kplayeractionlist.h
+++ b/kplayer/kplayeractionlist.h
@@ -19,7 +19,7 @@
#include <tqobject.h>
#include <tqptrlist.h>
-class KAction;
+class TDEAction;
/**Action list.
*@author kiriuja
@@ -36,7 +36,7 @@ public:
virtual ~KPlayerActionList();
/** Returns the list of actions. */
- const TQPtrList<KAction>& actions (void) const
+ const TQPtrList<TDEAction>& actions (void) const
{ return m_actions; }
/** Returns the number of actions on the list. */
int count (void) const
@@ -63,9 +63,9 @@ protected:
/** Unplugs the action list. */
void unplug (void);
/** Updates the action text, status, and whats this. */
- virtual void updateAction (KAction* action);
+ virtual void updateAction (TDEAction* action);
/** Selects the item with the given index by emitting the activated signal. */
- virtual void actionActivated (KAction* action, int index);
+ virtual void actionActivated (TDEAction* action, int index);
/** Action text template. */
TQString m_text;
@@ -74,7 +74,7 @@ protected:
/** Action whats this text template. */
TQString m_whatsthis;
/** Action list. */
- TQPtrList<KAction> m_actions;
+ TQPtrList<TDEAction> m_actions;
};
/**Simple action list.
@@ -96,7 +96,7 @@ public:
protected:
/** Updates the action text, status, and whats this. */
- virtual void updateAction (KAction* action);
+ virtual void updateAction (TDEAction* action);
/** Action names. */
const TQStringList& m_names;
@@ -119,9 +119,9 @@ public:
protected:
/** Updates the action text, status, and whats this. */
- virtual void updateAction (KAction* action);
+ virtual void updateAction (TDEAction* action);
/** Selects the item with the given index by emitting the activated signal. */
- virtual void actionActivated (KAction* action, int index);
+ virtual void actionActivated (TDEAction* action, int index);
/** Action states. */
const TQMap<TQString, bool>& m_states;
@@ -155,7 +155,7 @@ protected:
void addActions (const TQMap<int, TQString>& ids, int id);
/** Selects the track with the given index by emitting the activated signal. */
- virtual void actionActivated (KAction* action, int index);
+ virtual void actionActivated (TDEAction* action, int index);
};
/**Subtitle track action list.
@@ -178,7 +178,7 @@ public:
protected:
/** Selects the track with the given index by emitting the activated signal. */
- virtual void actionActivated (KAction* action, int index);
+ virtual void actionActivated (TDEAction* action, int index);
};
#endif