diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-14 00:15:30 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-14 00:15:30 -0500 |
commit | 285ed33941fa09ed2b1f0d18d74117b73f5dfefd (patch) | |
tree | b9b2b2cf292658de7e1d19246033609357bd918b /lib | |
parent | 5844cd0f1e79f8ccca3d1536a7cc96c4af81d293 (diff) | |
download | koffice-285ed33941fa09ed2b1f0d18d74117b73f5dfefd.tar.gz koffice-285ed33941fa09ed2b1f0d18d74117b73f5dfefd.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 'lib')
-rw-r--r-- | lib/kformula/kformuladocument.cc | 4 | ||||
-rw-r--r-- | lib/kotext/KoLanguageTab.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/kformula/kformuladocument.cc b/lib/kformula/kformuladocument.cc index 5a84a47d..c041232f 100644 --- a/lib/kformula/kformuladocument.cc +++ b/lib/kformula/kformuladocument.cc @@ -616,11 +616,11 @@ void DocumentWrapper::createActions( TDEActionCollection* collection ) collection, "formula_syntaxhighlighting"); //m_syntaxHighlightingAction->setChecked( m_contextStyle->syntaxHighlighting() ); - m_formatBoldAction = new TDEToggleAction( i18n( "&Bold" ), "text_bold", + m_formatBoldAction = new TDEToggleAction( i18n( "&Bold" ), "format-text-bold", 0, //CTRL + Key_B, this, TQT_SLOT( textBold() ), collection, "formula_format_bold" ); - m_formatItalicAction = new TDEToggleAction( i18n( "&Italic" ), "text_italic", + m_formatItalicAction = new TDEToggleAction( i18n( "&Italic" ), "format-text-italic", 0, //CTRL + Key_I, this, TQT_SLOT( textItalic() ), collection, "formula_format_italic" ); diff --git a/lib/kotext/KoLanguageTab.cpp b/lib/kotext/KoLanguageTab.cpp index cf7b261b..b5b6e0dd 100644 --- a/lib/kotext/KoLanguageTab.cpp +++ b/lib/kotext/KoLanguageTab.cpp @@ -43,7 +43,7 @@ KoLanguageTab::KoLanguageTab( KSpell2::Broker::Ptr broker, TQWidget* parent, con for ( ; itName != langNames.end() && itTag != langTags.end(); ++itName, ++itTag ) { if ( spellCheckLanguages.find( *itTag ) != spellCheckLanguages.end() ) - languageKComboBox->insertItem( SmallIcon( "spellcheck" ), *itName ); + languageKComboBox->insertItem( SmallIcon( "tools-check-spelling" ), *itName ); else languageKComboBox->insertItem( *itName ); } |