summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-14 00:15:36 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-14 00:15:36 -0500
commitd687aa5013edc5376eade093a5361f004b30f4c8 (patch)
treed04b8ca77270f821c8662379084c0f9a0906bb17
parent5a1646f27c99a9040d9c82ecb3f5b5f3da5e2bc4 (diff)
downloadtdegraphics-d687aa5013edc5376eade093a5361f004b30f4c8.tar.gz
tdegraphics-d687aa5013edc5376eade093a5361f004b30f4c8.zip
Bring centrejust, leftjust, rightjust, text_left, text_right, text_bold, text_italic, text_under, text_strike, and spellcheck icons into XDG compliance
-rw-r--r--kolourpaint/kpmainwindow_text.cpp12
-rw-r--r--kpdf/part.cpp2
2 files changed, 7 insertions, 7 deletions
diff --git a/kolourpaint/kpmainwindow_text.cpp b/kolourpaint/kpmainwindow_text.cpp
index c96413be..9fd87672 100644
--- a/kolourpaint/kpmainwindow_text.cpp
+++ b/kolourpaint/kpmainwindow_text.cpp
@@ -55,16 +55,16 @@ void kpMainWindow::setupTextToolBarActions ()
TQT_TQOBJECT(this), TQT_SLOT (slotTextFontSizeChanged ()), ac, "text_font_size");
m_actionTextBold = new TDEToggleAction (i18n ("Bold"),
- "text_bold"/*icon*/, 0/*shortcut*/,
- TQT_TQOBJECT(this), TQT_SLOT (slotTextBoldChanged ()), ac, "text_bold");
+ "format-text-bold"/*icon*/, 0/*shortcut*/,
+ TQT_TQOBJECT(this), TQT_SLOT (slotTextBoldChanged ()), ac, "format-text-bold");
m_actionTextItalic = new TDEToggleAction (i18n ("Italic"),
- "text_italic"/*icon*/, 0/*shortcut*/,
- TQT_TQOBJECT(this), TQT_SLOT (slotTextItalicChanged ()), ac, "text_italic");
+ "format-text-italic"/*icon*/, 0/*shortcut*/,
+ TQT_TQOBJECT(this), TQT_SLOT (slotTextItalicChanged ()), ac, "format-text-italic");
m_actionTextUnderline = new TDEToggleAction (i18n ("Underline"),
- "text_under"/*icon*/, 0/*shortcut*/,
+ "format-text-underline"/*icon*/, 0/*shortcut*/,
TQT_TQOBJECT(this), TQT_SLOT (slotTextUnderlineChanged ()), ac, "text_underline");
m_actionTextStrikeThru = new TDEToggleAction (i18n ("Strike Through"),
- "text_strike"/*icon*/, 0/*shortcut*/,
+ "format-text-strikethrough"/*icon*/, 0/*shortcut*/,
TQT_TQOBJECT(this), TQT_SLOT (slotTextStrikeThruChanged ()), ac, "text_strike_thru");
diff --git a/kpdf/part.cpp b/kpdf/part.cpp
index f4fe5a24..92e6b596 100644
--- a/kpdf/part.cpp
+++ b/kpdf/part.cpp
@@ -192,7 +192,7 @@ Part::Part(TQWidget *parentWidget, const char *widgetName,
m_tocFrame = new TOC( tocWrapper, m_document );
tocWrapperLayout->add(m_tocFrame);
connect(m_tocFrame, TQT_SIGNAL(hasTOC(bool)), this, TQT_SLOT(enableTOC(bool)));
- index = m_toolBox->addItem( tocWrapper, TQIconSet(SmallIcon("text_left")), i18n("Contents") );
+ index = m_toolBox->addItem( tocWrapper, TQIconSet(SmallIcon("format-text-direction-ltr")), i18n("Contents") );
m_toolBox->setItemToolTip(index, i18n("Contents"));
enableTOC( false );