diff options
author | Michele Calgaro <[email protected]> | 2023-12-09 18:25:41 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-09 18:28:31 +0900 |
commit | 766478630b5e0f435d8aef9ee7ba44651e4e431d (patch) | |
tree | f7051c2c461364796929ed39875262b434fe0f42 /src/rip/k3bvideocdview.cpp | |
parent | b67830aae3b0bd8e8bfd2be1a7714dcb978ff59b (diff) | |
download | k3b-766478630b5e0f435d8aef9ee7ba44651e4e431d.tar.gz k3b-766478630b5e0f435d8aef9ee7ba44651e4e431d.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
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 |