summaryrefslogtreecommitdiffstats
path: root/kate/make
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-20 21:19:56 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-21 09:06:26 +0900
commitc19fc9375edce7ea957af8e336b06a481c4a993f (patch)
tree72df4cccd3ffe10c9e20cffb0fd76cf914cf157d /kate/make
parent76b9a4adfceeb8a009e392415541935618c83336 (diff)
downloadtdeaddons-c19fc9375edce7ea957af8e336b06a481c4a993f.tar.gz
tdeaddons-c19fc9375edce7ea957af8e336b06a481c4a993f.zip
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 3f05f93dac700cf12dade9ae450eff6158650d23)
Diffstat (limited to 'kate/make')
-rw-r--r--kate/make/plugin_katemake.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kate/make/plugin_katemake.cpp b/kate/make/plugin_katemake.cpp
index 55f4a17..b6c2084 100644
--- a/kate/make/plugin_katemake.cpp
+++ b/kate/make/plugin_katemake.cpp
@@ -334,19 +334,19 @@ PluginKateMakeView::PluginKateMakeView(TQWidget *parent,
m_proc=0;
(void) new TDEAction ( i18n("Next Error"), TDEShortcut(ALT+CTRL+Key_Right),
- TQT_TQOBJECT(this), TQT_SLOT( slotNext() ),
+ this, TQT_SLOT( slotNext() ),
actionCollection(), "make_right" );
(void) new TDEAction ( i18n("Previous Error"), TDEShortcut(ALT+CTRL+Key_Left),
- TQT_TQOBJECT(this), TQT_SLOT( slotPrev() ),
+ this, TQT_SLOT( slotPrev() ),
actionCollection(), "make_left" );
(void) new TDEAction ( i18n("Make"), TDEShortcut(ALT+Key_R),
- TQT_TQOBJECT(this), TQT_SLOT( slotValidate() ),
+ this, TQT_SLOT( slotValidate() ),
actionCollection(), "make_check" );
(void) new TDEAction ( i18n("Configure..."), TDEShortcut(),
- TQT_TQOBJECT(this), TQT_SLOT( slotConfigure() ),
+ this, TQT_SLOT( slotConfigure() ),
actionCollection(), "make_settings" );
setInstance(new TDEInstance("kate"));
@@ -368,7 +368,7 @@ PluginKateMakeView::PluginKateMakeView(TQWidget *parent,
connect(m_proc, TQT_SIGNAL(processExited(TDEProcess*)), this, TQT_SLOT(slotProcExited(TDEProcess*)));
connect(m_proc, TQT_SIGNAL(receivedStderr(TDEProcess*,char*,int)),
- TQT_TQOBJECT(this), TQT_SLOT(slotReceivedProcStderr(TDEProcess*, char*, int)));
+ this, TQT_SLOT(slotReceivedProcStderr(TDEProcess*, char*, int)));
TDEConfig c("katemakepluginrc");