diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-14 00:15:37 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-14 00:15:37 -0500 |
commit | 96608b99bfe246795e234c0440b0d52f533280a5 (patch) | |
tree | 9aba560005c9d1e30ed474febe8e4708591f3901 /kate/part | |
parent | ffb86e490f70f2bdb41f84847f578c0a8e78176d (diff) | |
download | tdelibs-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')
-rw-r--r-- | kate/part/katedocument.cpp | 2 | ||||
-rw-r--r-- | kate/part/kateschema.cpp | 8 | ||||
-rw-r--r-- | kate/part/katespell.cpp | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/kate/part/katedocument.cpp b/kate/part/katedocument.cpp index 7488fec05..f81b8eb0d 100644 --- a/kate/part/katedocument.cpp +++ b/kate/part/katedocument.cpp @@ -522,7 +522,7 @@ TQPixmap KateDocument::configPagePixmap (uint number, int size) const return BarIcon("edit", size); case 4: - return BarIcon("rightjust", size); + return BarIcon("format-justify-right", size); case 5: return BarIcon("document-save", size); diff --git a/kate/part/kateschema.cpp b/kate/part/kateschema.cpp index 5b71c92e8..f7977fac6 100644 --- a/kate/part/kateschema.cpp +++ b/kate/part/kateschema.cpp @@ -1051,10 +1051,10 @@ KateStyleListView::KateStyleListView( TQWidget *parent, bool showUseDefaults ) { setSorting( -1 ); // disable sorting, let the styles appear in their defined order addColumn( i18n("Context") ); - addColumn( SmallIconSet("text_bold"), TQString::null ); - addColumn( SmallIconSet("text_italic"), TQString::null ); - addColumn( SmallIconSet("text_under"), TQString::null ); - addColumn( SmallIconSet("text_strike"), TQString::null ); + addColumn( SmallIconSet("format-text-bold"), TQString::null ); + addColumn( SmallIconSet("format-text-italic"), TQString::null ); + addColumn( SmallIconSet("format-text-underline"), TQString::null ); + addColumn( SmallIconSet("format-text-strikethrough"), TQString::null ); addColumn( i18n("Normal") ); addColumn( i18n("Selected") ); addColumn( i18n("Background") ); 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")); } |