From 2c9bc9b806f533df7b8f5349467d0f4be95314a4 Mon Sep 17 00:00:00 2001 From: gregory guy Date: Sat, 13 Jun 2020 16:09:24 +0200 Subject: Conversion qt3 -> tqt3 Signed-off-by: gregory guy --- src/app/actions.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/app/actions.cpp') diff --git a/src/app/actions.cpp b/src/app/actions.cpp index a767a2c..3fd0971 100644 --- a/src/app/actions.cpp +++ b/src/app/actions.cpp @@ -4,22 +4,22 @@ #include "actions.h" #include "debug.h" #include "mxcl.library.h" -#include +#include #include "xineEngine.h" namespace Codeine { - PlayAction::PlayAction( QObject *receiver, const char *slot, KActionCollection *ac ) - : KToggleAction( i18n("Play"), "player_play", Qt::Key_Space, receiver, slot, ac, "play" ) + PlayAction::PlayAction( TQObject *receiver, const char *slot, KActionCollection *ac ) + : KToggleAction( i18n("Play"), "player_play", TQt::Key_Space, receiver, slot, ac, "play" ) {} void PlayAction::setChecked( bool b ) { - if( videoWindow()->state() == Engine::Empty && sender() && QCString(sender()->className()) == "KToolBarButton" ) { + if( videoWindow()->state() == Engine::Empty && sender() && TQCString(sender()->className()) == "KToolBarButton" ) { // clicking play when empty means open PlayMediaDialog, but we have to uncheck the toolbar button // as KDElibs sets that checked automatically.. - ((QToolButton*)sender())->setOn( false ); + ((TQToolButton*)sender())->setOn( false ); } else KToggleAction::setChecked( b ); -- cgit v1.2.3