diff options
author | gregory guy <[email protected]> | 2020-06-13 16:33:09 +0200 |
---|---|---|
committer | gregory guy <[email protected]> | 2020-06-13 16:33:09 +0200 |
commit | 12b478cefdf1789828dbcd677d409cf8bad654ca (patch) | |
tree | e0fd4a3b7a3d5b64ede310493a7b25624807f8b1 /src/app/videoWindow.cpp | |
parent | 2c9bc9b806f533df7b8f5349467d0f4be95314a4 (diff) | |
download | codeine-12b478cefdf1789828dbcd677d409cf8bad654ca.tar.gz codeine-12b478cefdf1789828dbcd677d409cf8bad654ca.zip |
Conversion KDE -> TDE environment.
Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'src/app/videoWindow.cpp')
-rw-r--r-- | src/app/videoWindow.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/app/videoWindow.cpp b/src/app/videoWindow.cpp index d344181..0affed5 100644 --- a/src/app/videoWindow.cpp +++ b/src/app/videoWindow.cpp @@ -7,11 +7,11 @@ #include <cmath> //std::log10 #include <cstdlib> #include "debug.h" -#include <kapplication.h> //::makeStandardCaption -#include <kconfig.h> +#include <tdeapplication.h> //::makeStandardCaption +#include <tdeconfig.h> #include <kiconloader.h> -#include <kpopupmenu.h> -#include <kwin.h> +#include <tdepopupmenu.h> +#include <twin.h> #include "mxcl.library.h" #include <ntqcursor.h> #include <ntqevent.h> @@ -129,10 +129,10 @@ VideoWindow::contextMenuEvent( TQContextMenuEvent *e ) { e->accept(); - KPopupMenu popup; + TDEPopupMenu popup; if( state() == Engine::Playing ) - popup.insertItem( SmallIconSet("player_pause"), i18n("Pause"), 1 ); + popup.insertItem( SmallIconSet("media-playback-pause"), i18n("Pause"), 1 ); else action( "play" )->plug( &popup ); @@ -141,7 +141,7 @@ VideoWindow::contextMenuEvent( TQContextMenuEvent *e ) if( TheStream::url().protocol() == "dvd" ) action( "toggle_dvd_menu" )->plug( &popup ), popup.insertSeparator(); - if( !((KToggleAction*)actionCollection()->action( "fullscreen" ))->isChecked() ) + if( !((TDEToggleAction*)actionCollection()->action( "fullscreen" ))->isChecked() ) action( "reset_zoom" )->plug( &popup ); action( "capture_frame" )->plug( &popup ); popup.insertSeparator(); |