diff --git a/src/libs/utils/images/arrow.png b/src/libs/utils/images/arrow.png new file mode 100644 index 0000000000000000000000000000000000000000..9134786c6877978675d045a6450acc192721a732 Binary files /dev/null and b/src/libs/utils/images/arrow.png differ diff --git a/src/libs/utils/utils.qrc b/src/libs/utils/utils.qrc index d284ce40d5d74e5fd12f75bf2ab64731004e0fed..6642ce7474937a3acca521a6837b3b428ae75585 100644 --- a/src/libs/utils/utils.qrc +++ b/src/libs/utils/utils.qrc @@ -1,5 +1,6 @@ <RCC> <qresource prefix="/utils"> <file>images/removesubmitfield.png</file> + <file>images/arrow.png</file> </qresource> </RCC> diff --git a/src/libs/utils/wizard.cpp b/src/libs/utils/wizard.cpp index 616ea57cece6d020ce438297eba98b20e9fec239..0cfcb5c1c47bfe734f1161eb22d53001812043e1 100644 --- a/src/libs/utils/wizard.cpp +++ b/src/libs/utils/wizard.cpp @@ -113,9 +113,9 @@ LinearProgressWidget::LinearProgressWidget(WizardProgress *progress, QWidget *pa : QWidget(parent), m_dotsItemWidget(0), - m_disableUpdatesCount(0), - m_indicatorPixmap(QLatin1String(":/trolltech/styles/commonstyle/images/right-16.png")) + m_disableUpdatesCount(0) { + m_indicatorPixmap = QIcon::fromTheme("go-next", QIcon(QLatin1String(":/utils/images/arrow.png"))).pixmap(16); m_wizardProgress = progress; m_mainLayout = new QVBoxLayout(this); m_itemWidgetLayout = new QVBoxLayout();