summaryrefslogtreecommitdiffstats
path: root/src/projects/k3bview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-09 18:25:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-10 00:55:58 +0900
commit6a101aa2ef54f02a292d6c28f23e2554a72e2bce (patch)
treef09a5825791af56e09934f662c82894dd4544edb /src/projects/k3bview.cpp
parent386d824e48f9c050b839ba313234cf7fa1ba833f (diff)
downloadk3b-6a101aa2.tar.gz
k3b-6a101aa2.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/projects/k3bview.cpp')
-rw-r--r--src/projects/k3bview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/projects/k3bview.cpp b/src/projects/k3bview.cpp
index 717aa7f..8e1ea1a 100644
--- a/src/projects/k3bview.cpp
+++ b/src/projects/k3bview.cpp
@@ -57,10 +57,10 @@ K3bView::K3bView( K3bDoc* pDoc, TQWidget *parent, const char* name )
grid->setSpacing( 5 );
grid->setMargin( 2 );
- TDEAction* burnAction = new TDEAction( i18n("&Burn"), "cdburn", CTRL + Key_B, TQT_TQOBJECT(this), TQT_SLOT(slotBurn()),
+ TDEAction* burnAction = new TDEAction( i18n("&Burn"), "cdburn", CTRL + Key_B, this, TQT_SLOT(slotBurn()),
actionCollection(), "project_burn");
burnAction->setToolTip( i18n("Open the burn dialog for the current project") );
- TDEAction* propAction = new TDEAction( i18n("&Properties"), "edit", CTRL + Key_P, TQT_TQOBJECT(this), TQT_SLOT(slotProperties()),
+ TDEAction* propAction = new TDEAction( i18n("&Properties"), "edit", CTRL + Key_P, this, TQT_SLOT(slotProperties()),
actionCollection(), "project_properties");
propAction->setToolTip( i18n("Open the properties dialog") );
@@ -139,7 +139,7 @@ void K3bView::addPluginButtons( int projectType )
pp->icon(),
pp->toolTip(),
pp->whatsThis(),
- TQT_TQOBJECT(this),
+ this,
TQT_SLOT(slotPluginButtonClicked()) );
m_plugins.insert( static_cast<void*>(button), pp );
}