From 96608b99bfe246795e234c0440b0d52f533280a5 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 14 Oct 2014 00:15:37 -0500 Subject: Bring centrejust, leftjust, rightjust, text_left, text_right, text_bold, text_italic, text_under, text_strike, and spellcheck icons into XDG compliance --- kate/part/katedocument.cpp | 2 +- kate/part/kateschema.cpp | 8 ++++---- kate/part/katespell.cpp | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'kate/part') 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")); } -- cgit v1.2.1