summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/opencontextmenu.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-07 15:05:28 +0900
committerMichele Calgaro <[email protected]>2023-12-08 20:53:46 +0900
commita2bf0715f2265ba90a79fdb4410e856d4c4226ac (patch)
tree0cbd8d68b4e622430278f0d49b72341f9ebc0bf1 /src/svnfrontend/opencontextmenu.cpp
parent7221e1ed9cb20950cfb09167c6e194ff5c619c16 (diff)
downloadtdesvn-a2bf0715f2265ba90a79fdb4410e856d4c4226ac.tar.gz
tdesvn-a2bf0715f2265ba90a79fdb4410e856d4c4226ac.zip
Replaced various '#define' with actual strings - part 6
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 70a9b1f3fb15c9725f1ad6ba5ffa4b3c1554e97c)
Diffstat (limited to 'src/svnfrontend/opencontextmenu.cpp')
-rw-r--r--src/svnfrontend/opencontextmenu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/svnfrontend/opencontextmenu.cpp b/src/svnfrontend/opencontextmenu.cpp
index 9594610..08d66f7 100644
--- a/src/svnfrontend/opencontextmenu.cpp
+++ b/src/svnfrontend/opencontextmenu.cpp
@@ -47,7 +47,7 @@ void OpenContextmenu::setup()
TQString actionName( (*it)->name().replace("&", "&&") );
act = new TDEAction( actionName, (*it)->pixmap( TDEIcon::Small ), 0,
- TQT_TQOBJECT(this), TQT_SLOT( slotRunService() ), TQT_TQOBJECT(this), nam.prepend( "appservice_" ) );
+ this, TQT_SLOT( slotRunService() ), this, nam.prepend( "appservice_" ) );
act->plug(this);
m_mapPopup[ id++ ] = *it;
}
@@ -55,7 +55,7 @@ void OpenContextmenu::setup()
insertSeparator( );
}
act = new TDEAction(i18n("Other..."),0, 0,
- TQT_TQOBJECT(this), TQT_SLOT( slotOpenWith() ),TQT_TQOBJECT(this),"openwith");
+ this, TQT_SLOT( slotOpenWith() ),this,"openwith");
act->plug(this);
}