summaryrefslogtreecommitdiffstats
path: root/apps/ktorrent/groups/groupview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-08 13:26:10 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-08 13:26:10 +0900
commit09d3e49e01a4b798762fd505810b092fd0c77b47 (patch)
tree56d2e1c8be467325fab0b9977628ab1384d3e9a4 /apps/ktorrent/groups/groupview.cpp
parent79e900a6893237b41b0d53a548c03e0f247e806d (diff)
downloadktorrent-09d3e49e01a4b798762fd505810b092fd0c77b47.tar.gz
ktorrent-09d3e49e01a4b798762fd505810b092fd0c77b47.zip
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'apps/ktorrent/groups/groupview.cpp')
-rw-r--r--apps/ktorrent/groups/groupview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/ktorrent/groups/groupview.cpp b/apps/ktorrent/groups/groupview.cpp
index 25cf9f2..1bc6dcc 100644
--- a/apps/ktorrent/groups/groupview.cpp
+++ b/apps/ktorrent/groups/groupview.cpp
@@ -136,16 +136,16 @@ namespace kt
menu = new TDEPopupMenu(this);
new_group = new TDEAction(i18n("New Group"),"document-new",0,
- TQT_TQOBJECT(this), TQT_SLOT(addGroup()),col, "New Group");
+ this, TQT_SLOT(addGroup()),col, "New Group");
edit_group = new TDEAction(i18n("Edit Name"),"edit",0,
- TQT_TQOBJECT(this), TQT_SLOT(editGroupName()),col,"Edit Group Name");
+ this, TQT_SLOT(editGroupName()),col,"Edit Group Name");
remove_group = new TDEAction(i18n("Remove Group"),"remove",0,
- TQT_TQOBJECT(this), TQT_SLOT(removeGroup()),col,"Remove Group");
+ this, TQT_SLOT(removeGroup()),col,"Remove Group");
open_in_new_tab = new TDEAction(i18n("Open Tab"),"document-open",0,
- TQT_TQOBJECT(this) ,TQT_SLOT(openView()),col,"Open Tab");
+ this ,TQT_SLOT(openView()),col,"Open Tab");
open_in_new_tab->plug(menu);
menu->insertSeparator();