summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/opencontextmenu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/svnfrontend/opencontextmenu.cpp')
-rw-r--r--src/svnfrontend/opencontextmenu.cpp6
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);
}