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 | 9f3595829e01341508181afb6ccf181db37b8ddc (patch) | |
tree | a469fe4720874aa8cb384ece5b7850bd923e2bf2 /src/knowitpref.cpp | |
parent | 0aac0767854099579c493de6c1d49629f583bc72 (diff) | |
download | knowit-9f3595829e01341508181afb6ccf181db37b8ddc.tar.gz knowit-9f3595829e01341508181afb6ccf181db37b8ddc.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 'src/knowitpref.cpp')
-rw-r--r-- | src/knowitpref.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/knowitpref.cpp b/src/knowitpref.cpp index f5d5131..bbc4b97 100644 --- a/src/knowitpref.cpp +++ b/src/knowitpref.cpp @@ -276,13 +276,13 @@ KnowitPreferences::KnowitPreferences() insertDateColorButton = new KColorButton(TQColor("Blue"), tmpBox, "InsertDateColorButton"); insertDateFormatEdit = new KLineEdit(tmpBox, "InsertDateFormatEdit"); insertDateItalicButton = new TQToolButton(tmpBox,"InsertDateItalicButton"); - insertDateItalicButton->setIconSet(TQIconSet(TDEGlobal::iconLoader()->loadIcon("text_italic", TDEIcon::Toolbar))); + insertDateItalicButton->setIconSet(TQIconSet(TDEGlobal::iconLoader()->loadIcon("format-text-italic", TDEIcon::Toolbar))); insertDateItalicButton->setToggleButton(true); insertDateBoldButton = new TQToolButton(tmpBox,"InsertDateBoldButton"); - insertDateBoldButton->setIconSet(TQIconSet(TDEGlobal::iconLoader()->loadIcon("text_bold", TDEIcon::Toolbar))); + insertDateBoldButton->setIconSet(TQIconSet(TDEGlobal::iconLoader()->loadIcon("format-text-bold", TDEIcon::Toolbar))); insertDateBoldButton->setToggleButton(true); insertDateUnderlineButton = new TQToolButton(tmpBox, "InsertDateUnderlineButton"); - insertDateUnderlineButton->setIconSet(TQIconSet(TDEGlobal::iconLoader()->loadIcon("text_under", TDEIcon::Toolbar))); + insertDateUnderlineButton->setIconSet(TQIconSet(TDEGlobal::iconLoader()->loadIcon("format-text-underline", TDEIcon::Toolbar))); insertDateUnderlineButton->setToggleButton(true); insertDateColorButton->setFixedSize(insertDateBoldButton->sizeHint()); insertDateFormatEdit->setMinimumWidth(6*insertDateBoldButton->sizeHint().width()); |