diff options
author | Timothy Pearson <[email protected]> | 2014-10-11 21:45:12 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-11 21:45:12 -0500 |
commit | 3ce85db085182ce7626879501d6c931aa3850e4a (patch) | |
tree | a5a9504141cd538d99fa6a0f4ecbae1920780d05 | |
parent | cd7ee866542cfd72a56f7105e4b36f1e77587d67 (diff) | |
download | bibletime-3ce85db085182ce7626879501d6c931aa3850e4a.tar.gz bibletime-3ce85db085182ce7626879501d6c931aa3850e4a.zip |
Bring previous and next icons into XDG compliance
-rw-r--r-- | bibletime/util/cresmgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bibletime/util/cresmgr.cpp b/bibletime/util/cresmgr.cpp index 0b848db..79828ac 100644 --- a/bibletime/util/cresmgr.cpp +++ b/bibletime/util/cresmgr.cpp @@ -387,14 +387,14 @@ namespace CResMgr { namespace backInHistory { TQString tooltip; - const TQString icon = "previous"; + const TQString icon = "go-previous"; const TDEShortcut accel = TQt::ALT + TQt::Key_Left; const char* actionName = "window_history_back_action"; } namespace forwardInHistory { TQString tooltip; - const TQString icon = "next"; + const TQString icon = "go-next"; const TDEShortcut accel = TQt::ALT + TQt::Key_Right; const char* actionName = "window_history_forward_action"; } |