diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-14 00:15:28 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-14 00:15:28 -0500 |
commit | ec69198f4888c671b7daa012ee8217cbdd647d63 (patch) | |
tree | 0c9d40ad63fd4248af204a2fbe0b312bac1812c9 | |
parent | 9702eef536f6ff799c3828072bf1a3c0d3295fb6 (diff) | |
download | bibletime-ec69198f4888c671b7daa012ee8217cbdd647d63.tar.gz bibletime-ec69198f4888c671b7daa012ee8217cbdd647d63.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-- | bibletime/util/cresmgr.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bibletime/util/cresmgr.cpp b/bibletime/util/cresmgr.cpp index 47c5f04..edefafe 100644 --- a/bibletime/util/cresmgr.cpp +++ b/bibletime/util/cresmgr.cpp @@ -521,21 +521,21 @@ namespace CResMgr { namespace boldText { TQString tooltip; - const TQString icon = "text_bold"; + const TQString icon = "format-text-bold"; const TDEShortcut accel = KKeySequence(); const char* actionName = "writeWindow_boldText"; } namespace italicText { TQString tooltip; - const TQString icon = "text_italic"; + const TQString icon = "format-text-italic"; const TDEShortcut accel = KKeySequence(); const char* actionName = "writeWindow_italicText"; } namespace underlinedText { TQString tooltip; - const TQString icon = "text_under"; + const TQString icon = "format-text-underline"; const TDEShortcut accel = KKeySequence(); const char* actionName = "writeWindow_underlineText"; } @@ -543,7 +543,7 @@ namespace CResMgr { namespace alignLeft { TQString tooltip; - const TQString icon = "text_left"; + const TQString icon = "format-text-direction-ltr"; const TDEShortcut accel = KKeySequence(); const char* actionName = "writeWindow_alignLeft"; } @@ -557,7 +557,7 @@ namespace CResMgr { namespace alignRight { TQString tooltip; - const TQString icon = "rightjust"; + const TQString icon = "format-justify-right"; const TDEShortcut accel = KKeySequence(); const char* actionName = "writeWindow_alignRight"; } |