diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 00:12:37 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 00:12:37 -0500 |
commit | e848cc8223e8173f8194c1a58061166c85e96096 (patch) | |
tree | 7dd53e176ba2905487fc9a504cf123c19de060a9 | |
parent | dc9e4b12c941defb96c08fce13875d6e7cb94be0 (diff) | |
download | knowit-e848cc8223e8173f8194c1a58061166c85e96096.tar.gz knowit-e848cc8223e8173f8194c1a58061166c85e96096.zip |
Bring up, down, top, and bottom icons into XDG compliance
-rw-r--r-- | src/knowit.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/knowit.cpp b/src/knowit.cpp index 7cb6b65..97f50e9 100644 --- a/src/knowit.cpp +++ b/src/knowit.cpp @@ -197,17 +197,17 @@ Knowit::Knowit(TQWidget*, const char *name) : TDEMainWindow(0, name), TQT_SLOT(slotCollapseAll()), actionCollection(), "note_collapse_all"); new TDEAction(i18n("&Collapse current"), "", "Alt+-", TQT_TQOBJECT(Items), TQT_SLOT(slotCollapse()), actionCollection(), "note_collapse"); - new TDEAction(i18n("Move up"), "up", "Alt+Shift+Up", TQT_TQOBJECT(this), + new TDEAction(i18n("Move up"), "go-up", "Alt+Shift+Up", TQT_TQOBJECT(this), TQT_SLOT(slotNoteMoveUp()), actionCollection(), "note_move_up"); - new TDEAction(i18n("Move down"), "down", "Alt+Shift+Down", TQT_TQOBJECT(this), + new TDEAction(i18n("Move down"), "go-down", "Alt+Shift+Down", TQT_TQOBJECT(this), TQT_SLOT(slotNoteMoveDown()), actionCollection(), "note_move_down"); new TDEAction(i18n("Move level up"), "back", "Alt+Shift+Left", TQT_TQOBJECT(this), TQT_SLOT(slotNoteMoveLeft()), actionCollection(), "note_move_left"); new TDEAction(i18n("Move level down"), "forward", "Alt+Shift+Right", TQT_TQOBJECT(this), TQT_SLOT(slotNoteMoveRight()), actionCollection(), "note_move_right"); - new TDEAction(i18n("Move at the beginning"), "top", "Alt+Shift+Home", TQT_TQOBJECT(this), + new TDEAction(i18n("Move at the beginning"), "go-top", "Alt+Shift+Home", TQT_TQOBJECT(this), TQT_SLOT(slotNoteMoveBegin()), actionCollection(), "note_move_begin"); - new TDEAction(i18n("Move at the end"), "bottom", "Alt+Shift+End", TQT_TQOBJECT(this), + new TDEAction(i18n("Move at the end"), "go-bottom", "Alt+Shift+End", TQT_TQOBJECT(this), TQT_SLOT(slotNoteMoveEnd()), actionCollection(), "note_move_end"); new TDEAction(i18n("Sort"), "", "", TQT_TQOBJECT(this), TQT_SLOT(slotNoteSort()), actionCollection(), "note_sort"); |