Bring mail_forward, mail_new, mail_replyall, mail_reply, mail_send, player_pause, player_play, player_stop, player_rew, player_fwd, player_start, player_end, rotate_ccw, rotate_cw, window_fullscreen, window_nofullscreen, window_new, viewmagfit, viewmag+, viewmag1, and viewmag- icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent 8455a5fe78
commit ea81993240

@ -117,16 +117,16 @@ MainWindow::MainWindow(TQWidget * parent, const char * name) :
"Alt+Ctrl+S", TQT_TQOBJECT(this), TQT_SLOT(slotInteractiveRename()),
actionCollection(), "edit_name");
action = new TDEAction(i18n("Increase Width"), SmallIcon("viewmag+"),
action = new TDEAction(i18n("Increase Width"), SmallIcon("zoom-in"),
"Alt+Shift+Right", TQT_TQOBJECT(this), TQT_SLOT(slotIncreaseSizeW()),
actionCollection(), "increasew");
action = new TDEAction(i18n("Decrease Width"), SmallIcon("viewmag-"),
action = new TDEAction(i18n("Decrease Width"), SmallIcon("zoom-out"),
"Alt+Shift+Left", TQT_TQOBJECT(this), TQT_SLOT(slotDecreaseSizeW()),
actionCollection(), "decreasew");
action = new TDEAction(i18n("Increase Height"), SmallIcon("viewmag+"),
action = new TDEAction(i18n("Increase Height"), SmallIcon("zoom-in"),
"Alt+Shift+Down", TQT_TQOBJECT(this), TQT_SLOT(slotIncreaseSizeH()),
actionCollection(), "increaseh");
action = new TDEAction(i18n("Decrease Height"), SmallIcon("viewmag-"),
action = new TDEAction(i18n("Decrease Height"), SmallIcon("zoom-out"),
"Alt+Shift+Up", TQT_TQOBJECT(this), TQT_SLOT(slotDecreaseSizeH()),
actionCollection(), "decreaseh");

Loading…
Cancel
Save