Bring first and last icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent e4a382d8f2
commit af47aa3384

@ -73,7 +73,7 @@ StatusNavigateBar::StatusNavigateBar(TQWidget *parent)
d->firstButton = new TQToolButton(this);
d->firstButton->setFocusPolicy(TQ_NoFocus);
d->firstButton->setAutoRaise(true);
d->firstButton->setIconSet(SmallIconSet("start"));
d->firstButton->setIconSet(SmallIconSet("go-first"));
TQToolTip::add(d->firstButton, i18n("Go to the first item"));
d->prevButton = new TQToolButton(this);
@ -91,7 +91,7 @@ StatusNavigateBar::StatusNavigateBar(TQWidget *parent)
d->lastButton = new TQToolButton(this);
d->lastButton->setFocusPolicy(TQ_NoFocus);
d->lastButton->setAutoRaise(true);
d->lastButton->setIconSet(SmallIconSet("finish"));
d->lastButton->setIconSet(SmallIconSet("go-last"));
TQToolTip::add(d->lastButton, i18n("Go to the last item"));
lay->addWidget(d->firstButton);

@ -264,12 +264,12 @@ void EditorWindow::setupStandardActions()
m_forwardAction = KStdAction::forward(TQT_TQOBJECT(this), TQT_SLOT(slotForward()),
actionCollection(), "editorwindow_forward");
m_firstAction = new TDEAction(i18n("&First"), "start",
m_firstAction = new TDEAction(i18n("&First"), "go-first",
TDEStdAccel::shortcut( TDEStdAccel::Home),
TQT_TQOBJECT(this), TQT_SLOT(slotFirst()),
actionCollection(), "editorwindow_first");
m_lastAction = new TDEAction(i18n("&Last"), "finish",
m_lastAction = new TDEAction(i18n("&Last"), "go-last",
TDEStdAccel::shortcut( TDEStdAccel::End),
TQT_TQOBJECT(this), TQT_SLOT(slotLast()),
actionCollection(), "editorwindow_last");

@ -336,13 +336,13 @@ void LightTableWindow::setupActions()
actionCollection(), "lighttable_forward");
d->forwardAction->setEnabled(false);
d->firstAction = new TDEAction(i18n("&First"), "start",
d->firstAction = new TDEAction(i18n("&First"), "go-first",
TDEStdAccel::shortcut( TDEStdAccel::Home),
TQT_TQOBJECT(this), TQT_SLOT(slotFirst()),
actionCollection(), "lighttable_first");
d->firstAction->setEnabled(false);
d->lastAction = new TDEAction(i18n("&Last"), "finish",
d->lastAction = new TDEAction(i18n("&Last"), "go-last",
TDEStdAccel::shortcut( TDEStdAccel::End),
TQT_TQOBJECT(this), TQT_SLOT(slotLast()),
actionCollection(), "lighttable_last");

Loading…
Cancel
Save