diff options
Diffstat (limited to 'buildtools/script/scriptprojectpart.cpp')
-rw-r--r-- | buildtools/script/scriptprojectpart.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/buildtools/script/scriptprojectpart.cpp b/buildtools/script/scriptprojectpart.cpp index 293a11c9..1c3ab20b 100644 --- a/buildtools/script/scriptprojectpart.cpp +++ b/buildtools/script/scriptprojectpart.cpp @@ -49,14 +49,14 @@ ScriptProjectPart::ScriptProjectPart(TQObject *parent, const char *name, const T // only create new file action if file creation part not available if (!extension<KDevCreateFile>("TDevelop/CreateFile")) { - KAction *action; - action = new KAction( i18n("New File..."), 0, + TDEAction *action; + action = new TDEAction( i18n("New File..."), 0, this, TQT_SLOT(slotNewFile()), actionCollection(), "file_newfile" ); action->setWhatsThis( i18n("<b>New file</b><p>Creates a new file.") ); action->setToolTip( i18n("Create a new file") ); } - new KAction( i18n("Rescan Project"), 0, CTRL+ALT+Key_R, + new TDEAction( i18n("Rescan Project"), 0, CTRL+ALT+Key_R, this, TQT_SLOT(rescan()), actionCollection(), "rescan" ); |