summaryrefslogtreecommitdiffstats
path: root/parts/filter
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 /parts/filter
parentda1941ccadffe5ae70ee111c53f0ec2b3d990869 (diff)
downloadtdevelop-f78eb03afb8c9a380985d26286afc40b4c89b292.tar.gz
tdevelop-f78eb03afb8c9a380985d26286afc40b4c89b292.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'parts/filter')
-rw-r--r--parts/filter/filterpart.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/parts/filter/filterpart.cpp b/parts/filter/filterpart.cpp
index aa10c559..69fc82eb 100644
--- a/parts/filter/filterpart.cpp
+++ b/parts/filter/filterpart.cpp
@@ -35,15 +35,15 @@ FilterPart::FilterPart(TQObject *parent, const char *name, const TQStringList &)
setInstance(FilterFactory::instance());
setXMLFile("kdevfilter.rc");
- KAction *action;
+ TDEAction *action;
- action = new KAction( i18n("Execute Command..."), 0,
+ action = new TDEAction( i18n("Execute Command..."), 0,
this, TQT_SLOT(slotShellInsert()),
actionCollection(), "tools_insertshell" );
action->setToolTip(i18n("Execute shell command"));
action->setWhatsThis(i18n("<b>Execute shell command</b><p>Executes a shell command and outputs its result into the current document."));
- action = new KAction( i18n("Filter Selection Through Command..."), 0,
+ action = new TDEAction( i18n("Filter Selection Through Command..."), 0,
this, TQT_SLOT(slotShellFilter()),
actionCollection(), "tools_filtershell" );
action->setToolTip(i18n("Filter selection through a shell command"));