summaryrefslogtreecommitdiffstats
path: root/kate/part/katespell.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-14 00:15:37 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-14 00:15:37 -0500
commit96608b99bfe246795e234c0440b0d52f533280a5 (patch)
tree9aba560005c9d1e30ed474febe8e4708591f3901 /kate/part/katespell.cpp
parentffb86e490f70f2bdb41f84847f578c0a8e78176d (diff)
downloadtdelibs-96608b99bfe246795e234c0440b0d52f533280a5.tar.gz
tdelibs-96608b99bfe246795e234c0440b0d52f533280a5.zip
Bring centrejust, leftjust, rightjust, text_left, text_right, text_bold, text_italic, text_under, text_strike, and spellcheck icons into XDG compliance
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"));
}