forked from qt-creator/qt-creator
Fix for QTCREATORBUG-1983
Uis in the core plugin should not use icons from the help plugin. Also, let's use the Core::Constants::ICON_* instead of duplicated file name strings.
This commit is contained in:
@@ -77,8 +77,8 @@ EditorToolBar::EditorToolBar(QWidget *parent) :
|
||||
m_closeButton(new QToolButton),
|
||||
m_lockButton(new QToolButton),
|
||||
|
||||
m_goBackAction(new QAction(QIcon(QLatin1String(":/help/images/previous.png")), EditorManager::tr("Go Back"), parent)),
|
||||
m_goForwardAction(new QAction(QIcon(QLatin1String(":/help/images/next.png")), EditorManager::tr("Go Forward"), parent)),
|
||||
m_goBackAction(new QAction(QIcon(QLatin1String(Constants::ICON_PREV)), EditorManager::tr("Go Back"), parent)),
|
||||
m_goForwardAction(new QAction(QIcon(QLatin1String(Constants::ICON_NEXT)), EditorManager::tr("Go Forward"), parent)),
|
||||
|
||||
m_activeToolBar(0),
|
||||
m_toolBarPlaceholder(new QWidget),
|
||||
|
||||
Reference in New Issue
Block a user