summaryrefslogtreecommitdiffstats
path: root/kate/part/katespell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kate/part/katespell.cpp')
-rw-r--r--kate/part/katespell.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kate/part/katespell.cpp b/kate/part/katespell.cpp
index 494e52894..e68008470 100644
--- a/kate/part/katespell.cpp
+++ b/kate/part/katespell.cpp
@@ -54,10 +54,10 @@ KateSpell::~KateSpell()
void KateSpell::createActions( TDEActionCollection* ac )
{
KStdAction::spelling( this, TQT_SLOT(spellcheck()), ac );
- TDEAction *a = new TDEAction( i18n("Spelling (from cursor)..."), "spellcheck", 0, this, TQT_SLOT(spellcheckFromCursor()), ac, "tools_spelling_from_cursor" );
+ TDEAction *a = new TDEAction( i18n("Spelling (from cursor)..."), "tools-check-spelling", 0, this, TQT_SLOT(spellcheckFromCursor()), ac, "tools_spelling_from_cursor" );
a->setWhatsThis(i18n("Check the document's spelling from the cursor and forward"));
- m_spellcheckSelection = new TDEAction( i18n("Spellcheck Selection..."), "spellcheck", 0, this, TQT_SLOT(spellcheckSelection()), ac, "tools_spelling_selection" );
+ m_spellcheckSelection = new TDEAction( i18n("Spellcheck Selection..."), "tools-check-spelling", 0, this, TQT_SLOT(spellcheckSelection()), ac, "tools_spelling_selection" );
m_spellcheckSelection->setWhatsThis(i18n("Check spelling of the selected text"));
}