summaryrefslogtreecommitdiffstats
path: root/buildtools/script
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:15:35 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:15:35 -0600
commitf78eb03afb8c9a380985d26286afc40b4c89b292 (patch)
tree3c087e2f119e645c902958c3bc3c802abf078ad0 /buildtools/script
parentda1941ccadffe5ae70ee111c53f0ec2b3d990869 (diff)
downloadtdevelop-f78eb03afb8c9a380985d26286afc40b4c89b292.tar.gz
tdevelop-f78eb03afb8c9a380985d26286afc40b4c89b292.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'buildtools/script')
-rw-r--r--buildtools/script/scriptprojectpart.cpp6
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" );