From a08970e23e5ce66638bc9ffeea59003a91245342 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 14 Oct 2014 00:15:38 -0500 Subject: [PATCH] Bring centrejust, leftjust, rightjust, text_left, text_right, text_bold, text_italic, text_under, text_strike, and spellcheck icons into XDG compliance --- kedit/kedit.cpp | 2 +- kregexpeditor/verifybuttons.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kedit/kedit.cpp b/kedit/kedit.cpp index 33ac62c..4e71fab 100644 --- a/kedit/kedit.cpp +++ b/kedit/kedit.cpp @@ -1334,7 +1334,7 @@ SettingsDialog::SettingsDialog(TQWidget *parent, const char *name,TDEConfigSkele // Spelling addPage(spellConfig, i18n("Spelling"), - "spellcheck", i18n("Spelling Checker")); + "tools-check-spelling", i18n("Spelling Checker")); connect(spellConfig, TQT_SIGNAL(configChanged()), this, TQT_SLOT(slotSpellConfigChanged())); // Miscellaneous diff --git a/kregexpeditor/verifybuttons.cpp b/kregexpeditor/verifybuttons.cpp index d9fe294..eb756b2 100644 --- a/kregexpeditor/verifybuttons.cpp +++ b/kregexpeditor/verifybuttons.cpp @@ -45,7 +45,7 @@ VerifyButtons::VerifyButtons( TQWidget* parent, const char* name ) TQBoxLayout* layout = boxLayout(); _verify = new TQToolButton(this); - TQIconSet icon = Util::getSystemIconSet( TQString::fromLatin1("spellcheck")); + TQIconSet icon = Util::getSystemIconSet( TQString::fromLatin1("tools-check-spelling")); _verify->setIconSet( icon ); TQToolTip::add( _verify, i18n( "Verify regular expression" ) ); TQWhatsThis::add( _verify, i18n("Shows what part of the regular expression is being matched in the verifier window."