diff options
Diffstat (limited to 'src/kscopeactions.cpp')
-rw-r--r-- | src/kscopeactions.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/kscopeactions.cpp b/src/kscopeactions.cpp index 3caaedd..e74984d 100644 --- a/src/kscopeactions.cpp +++ b/src/kscopeactions.cpp @@ -25,7 +25,7 @@ * ***************************************************************************/ -#include <klocale.h> +#include <tdelocale.h> #include "kscope.h" #include "kscopeactions.h" #include "kscopeconfig.h" @@ -138,7 +138,7 @@ void KScopeActions::init() SIGNAL(toggleProject(bool))); addAction(i18n("&Make Project"), - "make_kdevelop", + "make_tdevelop", "Ctrl+M", m_pWindow, SLOT(slotProjectMake()), @@ -474,16 +474,16 @@ void KScopeActions::slotEnableFileActions(bool bEnable) * the action * @return The newly created action object */ -KAction* KScopeActions::addAction(const TQString& sCaption, const char* szIcon, +TDEAction* KScopeActions::addAction(const TQString& sCaption, const char* szIcon, const char* szShortcut, TQWidget* pReceiver, const char* szSlot, const char* szName, const char* szSignal) { - KAction* pAction; + TDEAction* pAction; // Create the action - pAction = new KAction(sCaption, + pAction = new TDEAction(sCaption, szIcon, - szShortcut == NULL ? KShortcut() : KShortcut(szShortcut), + szShortcut == NULL ? TDEShortcut() : TDEShortcut(szShortcut), pReceiver, szSlot, m_pCollection, @@ -508,16 +508,16 @@ KAction* KScopeActions::addAction(const TQString& sCaption, const char* szIcon, * the action * @return The newly created action object */ -KToggleAction* KScopeActions::addToggle(const TQString& sCaption, +TDEToggleAction* KScopeActions::addToggle(const TQString& sCaption, const char* szIcon, const char* szShortcut, TQWidget* pReceiver, const char* szSlot, const char* szName, const char* szSignal) { - KToggleAction* pAction; + TDEToggleAction* pAction; // Create the action - pAction = new KToggleAction(sCaption, + pAction = new TDEToggleAction(sCaption, szIcon, - szShortcut == NULL ? KShortcut() : KShortcut(szShortcut), + szShortcut == NULL ? TDEShortcut() : TDEShortcut(szShortcut), pReceiver, szSlot, m_pCollection, |