summaryrefslogtreecommitdiffstats
path: root/src/kscopeactions.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-10-08 00:16:56 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-10-08 05:14:54 +0200
commit78114a50964bc7bb5d7d99f713bb815ed5a623ef (patch)
tree871f5d697fb8825c02152c43ea0e671319b742cf /src/kscopeactions.cpp
parent84f5a315c3429b47a7eff15e626e2efdbe4f6e5e (diff)
downloadkscope-78114a50964bc7bb5d7d99f713bb815ed5a623ef.tar.gz
kscope-78114a50964bc7bb5d7d99f713bb815ed5a623ef.zip
Initial TDE conversion
Diffstat (limited to 'src/kscopeactions.cpp')
-rw-r--r--src/kscopeactions.cpp20
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,