diff options
Diffstat (limited to 'parts/filter')
-rw-r--r-- | parts/filter/filterpart.cpp | 6 |
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")); |