summaryrefslogtreecommitdiffstats
path: root/kplayer/kplayerlogwindow.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2016-03-26 18:05:04 +0100
committerSlávek Banko <slavek.banko@axis.cz>2016-03-26 20:34:32 +0100
commit666df3e0d9919030412a16228b0c895668f8c766 (patch)
tree13455dfdb6a7f76bf1514959a9fb1c37342ae7bc /kplayer/kplayerlogwindow.h
parent77a8a8f9dfc9a5cbbb8113c4e9cff6cc99e17d9f (diff)
downloadkplayer-666df3e0d9919030412a16228b0c895668f8c766.tar.gz
kplayer-666df3e0d9919030412a16228b0c895668f8c766.zip
Initial TDE conversion
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'kplayer/kplayerlogwindow.h')
-rw-r--r--kplayer/kplayerlogwindow.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kplayer/kplayerlogwindow.h b/kplayer/kplayerlogwindow.h
index 6d353d6..de40463 100644
--- a/kplayer/kplayerlogwindow.h
+++ b/kplayer/kplayerlogwindow.h
@@ -16,7 +16,7 @@
#ifndef KPLAYERLOGWINDOW_H
#define KPLAYERLOGWINDOW_H
-#include <kaction.h>
+#include <tdeaction.h>
#include <ktextedit.h>
#include <tqdockwindow.h>
@@ -28,7 +28,7 @@ class KPlayerLogWidget : public KTextEdit
Q_OBJECT
public:
- KPlayerLogWidget (KActionCollection* ac, TQWidget* parent = 0, const char* name = 0);
+ KPlayerLogWidget (TDEActionCollection* ac, TQWidget* parent = 0, const char* name = 0);
/** Returns whether there is an error in the log. */
bool hasError (void)
@@ -44,7 +44,7 @@ public:
{ m_popup = menu; }
/** Retrieves an action from the action collection by name. */
- KAction* action (const char* name) const
+ TDEAction* action (const char* name) const
{ return m_ac -> action (name); }
public slots:
@@ -61,7 +61,7 @@ protected:
virtual void contextMenuEvent (TQContextMenuEvent*);
/** Action collection. */
- KActionCollection* m_ac;
+ TDEActionCollection* m_ac;
/** Popup menu. */
TQPopupMenu* m_popup;
/** Error condition flag. */
@@ -78,7 +78,7 @@ class KPlayerLogWindow : public TQDockWindow
Q_OBJECT
public:
- KPlayerLogWindow (KActionCollection* ac, TQWidget* parent = 0, const char* name = 0);
+ KPlayerLogWindow (TDEActionCollection* ac, TQWidget* parent = 0, const char* name = 0);
void initialize (TQPopupMenu* menu);