diff --git a/digikam/libs/widgets/common/statusnavigatebar.cpp b/digikam/libs/widgets/common/statusnavigatebar.cpp index c484483..c2a3d40 100644 --- a/digikam/libs/widgets/common/statusnavigatebar.cpp +++ b/digikam/libs/widgets/common/statusnavigatebar.cpp @@ -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); diff --git a/digikam/utilities/imageeditor/editor/editorwindow.cpp b/digikam/utilities/imageeditor/editor/editorwindow.cpp index 2a7a949..8e4c5f4 100644 --- a/digikam/utilities/imageeditor/editor/editorwindow.cpp +++ b/digikam/utilities/imageeditor/editor/editorwindow.cpp @@ -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"); diff --git a/digikam/utilities/lighttable/lighttablewindow.cpp b/digikam/utilities/lighttable/lighttablewindow.cpp index 5901ac8..712dffb 100644 --- a/digikam/utilities/lighttable/lighttablewindow.cpp +++ b/digikam/utilities/lighttable/lighttablewindow.cpp @@ -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");