diff options
author | Michele Calgaro <[email protected]> | 2023-12-07 15:05:28 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-08 20:53:46 +0900 |
commit | a2bf0715f2265ba90a79fdb4410e856d4c4226ac (patch) | |
tree | 0cbd8d68b4e622430278f0d49b72341f9ebc0bf1 /src/svnfrontend/opencontextmenu.cpp | |
parent | 7221e1ed9cb20950cfb09167c6e194ff5c619c16 (diff) | |
download | tdesvn-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.cpp | 4 |
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); } |