diff options
Diffstat (limited to 'parts/abbrev/abbrevpart.cpp')
-rw-r--r-- | parts/abbrev/abbrevpart.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/parts/abbrev/abbrevpart.cpp b/parts/abbrev/abbrevpart.cpp index ccfe6be6..beadb5fa 100644 --- a/parts/abbrev/abbrevpart.cpp +++ b/parts/abbrev/abbrevpart.cpp @@ -76,14 +76,14 @@ AbbrevPart::AbbrevPart(TQObject *parent, const char *name, const TQStringList &) connect(core(), TQT_SIGNAL(configWidget(KDialogBase*)), this, TQT_SLOT(configWidget(KDialogBase*))); - KAction *action; - action = new KAction( i18n("Expand Text"), CTRL + Key_J, + TDEAction *action; + action = new TDEAction( i18n("Expand Text"), CTRL + Key_J, this, TQT_SLOT(slotExpandText()), actionCollection(), "edit_expandtext" ); action->setToolTip( i18n("Expand current word") ); action->setWhatsThis( i18n("<b>Expand current word</b><p>Current word can be completed using the list of similar words in source files.") ); - action = new KAction( i18n("Expand Abbreviation"), CTRL + Key_L, + action = new TDEAction( i18n("Expand Abbreviation"), CTRL + Key_L, this, TQT_SLOT(slotExpandAbbrev()), actionCollection(), "edit_expandabbrev" ); action->setToolTip( i18n("Expand abbreviation") ); |