diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:06:09 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:06:09 -0600 |
commit | 47bca8a908a56349637c0b91f4fc4f49f85f820f (patch) | |
tree | 56afb281e35997ab842e4c34ba21c98b4c1c6283 /src/svnfrontend/opencontextmenu.cpp | |
parent | 7143a99b4f885d13f7ab57bca4156900cabb34b8 (diff) | |
download | tdesvn-47bca8a908a56349637c0b91f4fc4f49f85f820f.tar.gz tdesvn-47bca8a908a56349637c0b91f4fc4f49f85f820f.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'src/svnfrontend/opencontextmenu.cpp')
-rw-r--r-- | src/svnfrontend/opencontextmenu.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/svnfrontend/opencontextmenu.cpp b/src/svnfrontend/opencontextmenu.cpp index d063e46..68aa496 100644 --- a/src/svnfrontend/opencontextmenu.cpp +++ b/src/svnfrontend/opencontextmenu.cpp @@ -37,7 +37,7 @@ void OpenContextmenu::setup() m_mapPopup.clear(); TDETrader::OfferList::ConstIterator it = m_List.begin(); int id = 1; - KAction*act; + TDEAction*act; for( ; it != m_List.end(); ++it ) { if ((*it)->noDisplay()) continue; @@ -46,7 +46,7 @@ void OpenContextmenu::setup() nam.setNum( id ); TQString actionName( (*it)->name().replace("&", "&&") ); - act = new KAction( actionName, (*it)->pixmap( KIcon::Small ), 0, + act = new TDEAction( actionName, (*it)->pixmap( KIcon::Small ), 0, TQT_TQOBJECT(this), TQT_SLOT( slotRunService() ), TQT_TQOBJECT(this), nam.prepend( "appservice_" ) ); act->plug(this); m_mapPopup[ id++ ] = *it; @@ -54,7 +54,7 @@ void OpenContextmenu::setup() if (m_List.count()>0) { insertSeparator( ); } - act = new KAction(i18n("Other..."),0, 0, + act = new TDEAction(i18n("Other..."),0, 0, TQT_TQOBJECT(this), TQT_SLOT( slotOpenWith() ),TQT_TQOBJECT(this),"openwith"); act->plug(this); } |