summaryrefslogtreecommitdiffstats
path: root/kword
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-14 00:15:30 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-14 00:15:30 -0500
commit285ed33941fa09ed2b1f0d18d74117b73f5dfefd (patch)
treeb9b2b2cf292658de7e1d19246033609357bd918b /kword
parent5844cd0f1e79f8ccca3d1536a7cc96c4af81d293 (diff)
downloadkoffice-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 'kword')
-rw-r--r--kword/KWConfig.cpp2
-rw-r--r--kword/KWView.cpp12
2 files changed, 7 insertions, 7 deletions
diff --git a/kword/KWConfig.cpp b/kword/KWConfig.cpp
index 82a96bd3..45c136ef 100644
--- a/kword/KWConfig.cpp
+++ b/kword/KWConfig.cpp
@@ -94,7 +94,7 @@ KWConfig::KWConfig( KWView* parent )
m_defaultDocPage=new ConfigureDefaultDocPage(parent, page4);
TQVBox *page = addVBoxPage( i18n("Spelling"), i18n("Spell Checker Behavior"),
- loadIcon("spellcheck") );
+ loadIcon("tools-check-spelling") );
m_spellPage = new ConfigureSpellPage(parent, page);
TQVBox *page5 = addVBoxPage( i18n("Formula"), i18n("Formula Defaults"),
diff --git a/kword/KWView.cpp b/kword/KWView.cpp
index 1cf60cce..74a49cfa 100644
--- a/kword/KWView.cpp
+++ b/kword/KWView.cpp
@@ -912,20 +912,20 @@ void KWView::setupActions()
// ----------------------- More format actions, for the toolbar only
- m_actionFormatBold = new TDEToggleAction( i18n( "&Bold" ), "text_bold", TQt::CTRL + TQt::Key_B,
+ m_actionFormatBold = new TDEToggleAction( i18n( "&Bold" ), "format-text-bold", TQt::CTRL + TQt::Key_B,
TQT_TQOBJECT(this), TQT_SLOT( textBold() ),
actionCollection(), "format_bold" );
- m_actionFormatItalic = new TDEToggleAction( i18n( "&Italic" ), "text_italic", TQt::CTRL + TQt::Key_I,
+ m_actionFormatItalic = new TDEToggleAction( i18n( "&Italic" ), "format-text-italic", TQt::CTRL + TQt::Key_I,
TQT_TQOBJECT(this), TQT_SLOT( textItalic() ),
actionCollection(), "format_italic" );
- m_actionFormatUnderline = new TDEToggleAction( i18n( "&Underline" ), "text_under", TQt::CTRL + TQt::Key_U,
+ m_actionFormatUnderline = new TDEToggleAction( i18n( "&Underline" ), "format-text-underline", TQt::CTRL + TQt::Key_U,
TQT_TQOBJECT(this), TQT_SLOT( textUnderline() ),
actionCollection(), "format_underline" );
- m_actionFormatStrikeOut = new TDEToggleAction( i18n( "&Strike Out" ), "text_strike", 0 ,
+ m_actionFormatStrikeOut = new TDEToggleAction( i18n( "&Strike Out" ), "format-text-strikethrough", 0 ,
TQT_TQOBJECT(this), TQT_SLOT( textStrikeOut() ),
actionCollection(), "format_strike" );
- m_actionFormatAlignLeft = new TDEToggleAction( i18n( "Align &Left" ), "text_left", TQt::CTRL + TQt::Key_L,
+ m_actionFormatAlignLeft = new TDEToggleAction( i18n( "Align &Left" ), "format-text-direction-ltr", TQt::CTRL + TQt::Key_L,
TQT_TQOBJECT(this), TQT_SLOT( textAlignLeft() ),
actionCollection(), "format_alignleft" );
m_actionFormatAlignLeft->setExclusiveGroup( "align" );
@@ -934,7 +934,7 @@ void KWView::setupActions()
TQT_TQOBJECT(this), TQT_SLOT( textAlignCenter() ),
actionCollection(), "format_aligncenter" );
m_actionFormatAlignCenter->setExclusiveGroup( "align" );
- m_actionFormatAlignRight = new TDEToggleAction( i18n( "Align &Right" ), "text_right", TQt::CTRL + TQt::ALT + TQt::Key_R,
+ m_actionFormatAlignRight = new TDEToggleAction( i18n( "Align &Right" ), "format-text-direction-rtl", TQt::CTRL + TQt::ALT + TQt::Key_R,
TQT_TQOBJECT(this), TQT_SLOT( textAlignRight() ),
actionCollection(), "format_alignright" );
m_actionFormatAlignRight->setExclusiveGroup( "align" );