diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 00:34:20 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 00:34:20 -0500 |
commit | af47aa338429389242f5e2cd74cfe8f9b6002955 (patch) | |
tree | b9d19f1150e596368b1604a4e674926de069ac23 | |
parent | e4a382d8f26d2a8fdd32e87ce46c848a42cb4ae4 (diff) | |
download | digikam-af47aa338429389242f5e2cd74cfe8f9b6002955.tar.gz digikam-af47aa338429389242f5e2cd74cfe8f9b6002955.zip |
Bring first and last icons into XDG compliance
-rw-r--r-- | digikam/libs/widgets/common/statusnavigatebar.cpp | 4 | ||||
-rw-r--r-- | digikam/utilities/imageeditor/editor/editorwindow.cpp | 4 | ||||
-rw-r--r-- | digikam/utilities/lighttable/lighttablewindow.cpp | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/digikam/libs/widgets/common/statusnavigatebar.cpp b/digikam/libs/widgets/common/statusnavigatebar.cpp index c484483f..c2a3d406 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 2a7a9495..8e4c5f46 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 5901ac81..712dffbc 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"); |