diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-09 18:25:41 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-10 00:55:58 +0900 |
commit | 6a101aa2ef54f02a292d6c28f23e2554a72e2bce (patch) | |
tree | f09a5825791af56e09934f662c82894dd4544edb /src/rip/k3bvideocdview.cpp | |
parent | 386d824e48f9c050b839ba313234cf7fa1ba833f (diff) | |
download | k3b-6a101aa2ef54f02a292d6c28f23e2554a72e2bce.tar.gz k3b-6a101aa2ef54f02a292d6c28f23e2554a72e2bce.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 766478630b5e0f435d8aef9ee7ba44651e4e431d)
Diffstat (limited to 'src/rip/k3bvideocdview.cpp')
-rw-r--r-- | src/rip/k3bvideocdview.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/rip/k3bvideocdview.cpp b/src/rip/k3bvideocdview.cpp index 52549e6..4e54196 100644 --- a/src/rip/k3bvideocdview.cpp +++ b/src/rip/k3bvideocdview.cpp @@ -248,7 +248,7 @@ void K3bVideoCdView::reloadMedium() m_videooptions ->setVideoCdSource( device()->devicename() ); - m_videocdinfo = new K3bVideoCdInfo( TQT_TQOBJECT(this) ); + m_videocdinfo = new K3bVideoCdInfo( this ); m_videocdinfo->info( device()->devicename() ); connect( m_videocdinfo, TQT_SIGNAL( infoFinished( bool ) ), @@ -322,19 +322,19 @@ void K3bVideoCdView::initActions() { m_actionCollection = new TDEActionCollection( this ); - TDEAction* actionSelectAll = KStdAction::selectAll( TQT_TQOBJECT(this), TQT_SLOT( slotSelectAll() ), + TDEAction* actionSelectAll = KStdAction::selectAll( this, TQT_SLOT( slotSelectAll() ), m_actionCollection, "select_all" ); - TDEAction* actionDeselectAll = KStdAction::deselect( TQT_TQOBJECT(this), TQT_SLOT( slotDeselectAll() ), + TDEAction* actionDeselectAll = KStdAction::deselect( this, TQT_SLOT( slotDeselectAll() ), m_actionCollection, "deselect_all" ); actionDeselectAll->setText( i18n( "Dese&lect All" ) ); - TDEAction* actionSelect = new TDEAction( i18n( "Select Track" ), 0, 0, TQT_TQOBJECT(this), + TDEAction* actionSelect = new TDEAction( i18n( "Select Track" ), 0, 0, this, TQT_SLOT( slotSelect() ), actionCollection(), "select_track" ); - TDEAction* actionDeselect = new TDEAction( i18n( "Deselect Track" ), 0, 0, TQT_TQOBJECT(this), + TDEAction* actionDeselect = new TDEAction( i18n( "Deselect Track" ), 0, 0, this, TQT_SLOT( slotDeselect() ), actionCollection(), "deselect_track" ); - TDEAction* actionStartRip = new TDEAction( i18n( "Start Ripping" ), "system-run", 0, TQT_TQOBJECT(this), + TDEAction* actionStartRip = new TDEAction( i18n( "Start Ripping" ), "system-run", 0, this, TQT_SLOT( startRip() ), actionCollection(), "start_rip" ); // TODO: set the actions tooltips and whatsthis infos |