summaryrefslogtreecommitdiffstats
path: root/kate/make
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:10:05 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:10:05 -0600
commit74a2067d286867e313f736d6733407586b71195e (patch)
tree182ea565d6909db1541424e4ffb3168b4b139c21 /kate/make
parent081670a12774435ae60cf8eba9226b91d27852b3 (diff)
downloadtdeaddons-74a2067d286867e313f736d6733407586b71195e.tar.gz
tdeaddons-74a2067d286867e313f736d6733407586b71195e.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kate/make')
-rw-r--r--kate/make/plugin_katemake.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kate/make/plugin_katemake.cpp b/kate/make/plugin_katemake.cpp
index 3d0cbb2..f2dfd1f 100644
--- a/kate/make/plugin_katemake.cpp
+++ b/kate/make/plugin_katemake.cpp
@@ -333,19 +333,19 @@ PluginKateMakeView::PluginKateMakeView(TQWidget *parent,
FUNCTIONSETUP;
m_proc=0;
- (void) new KAction ( i18n("Next Error"), KShortcut(ALT+CTRL+Key_Right),
+ (void) new TDEAction ( i18n("Next Error"), TDEShortcut(ALT+CTRL+Key_Right),
TQT_TQOBJECT(this), TQT_SLOT( slotNext() ),
actionCollection(), "make_right" );
- (void) new KAction ( i18n("Previous Error"), KShortcut(ALT+CTRL+Key_Left),
+ (void) new TDEAction ( i18n("Previous Error"), TDEShortcut(ALT+CTRL+Key_Left),
TQT_TQOBJECT(this), TQT_SLOT( slotPrev() ),
actionCollection(), "make_left" );
- (void) new KAction ( i18n("Make"), KShortcut(ALT+Key_R),
+ (void) new TDEAction ( i18n("Make"), TDEShortcut(ALT+Key_R),
TQT_TQOBJECT(this), TQT_SLOT( slotValidate() ),
actionCollection(), "make_check" );
- (void) new KAction ( i18n("Configure..."), KShortcut(),
+ (void) new TDEAction ( i18n("Configure..."), TDEShortcut(),
TQT_TQOBJECT(this), TQT_SLOT( slotConfigure() ),
actionCollection(), "make_settings" );