VirtualBox

Changeset 57024 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Jul 20, 2015 3:32:20 PM (9 years ago)
Author:
vboxsync
Message:

FE/Qt: 5978: Mini-toolbar: NLS fix for r101739.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIMiniToolBar.cpp

    r57023 r57024  
    286286    m_pAutoHideAction = new QAction(this);
    287287    m_pAutoHideAction->setIcon(UIIconPool::iconSet(":/pin_16px.png"));
    288     m_pAutoHideAction->setToolTip(tr("Always show the toolbar"));
     288    m_pAutoHideAction->setToolTip(UIMiniToolBar::tr("Always show the toolbar"));
    289289    m_pAutoHideAction->setCheckable(true);
    290290    connect(m_pAutoHideAction, SIGNAL(toggled(bool)), this, SIGNAL(sigAutoHideToggled()));
     
    312312    m_pMinimizeAction = new QAction(this);
    313313    m_pMinimizeAction->setIcon(UIIconPool::iconSet(":/minimize_16px.png"));
    314     m_pMinimizeAction->setToolTip(tr("Minimize Window"));
     314    m_pMinimizeAction->setToolTip(UIMiniToolBar::tr("Minimize Window"));
    315315    connect(m_pMinimizeAction, SIGNAL(triggered()), this, SIGNAL(sigMinimizeAction()));
    316316    addAction(m_pMinimizeAction);
     
    319319    m_pRestoreAction = new QAction(this);
    320320    m_pRestoreAction->setIcon(UIIconPool::iconSet(":/restore_16px.png"));
    321     m_pRestoreAction->setToolTip(tr("Exit Full Screen or Seamless Mode"));
     321    m_pRestoreAction->setToolTip(UIMiniToolBar::tr("Exit Full Screen or Seamless Mode"));
    322322    connect(m_pRestoreAction, SIGNAL(triggered()), this, SIGNAL(sigExitAction()));
    323323    addAction(m_pRestoreAction);
     
    326326    m_pCloseAction = new QAction(this);
    327327    m_pCloseAction->setIcon(UIIconPool::iconSet(":/close_16px.png"));
    328     m_pCloseAction->setToolTip(tr("Close VM"));
     328    m_pCloseAction->setToolTip(UIMiniToolBar::tr("Close VM"));
    329329    connect(m_pCloseAction, SIGNAL(triggered()), this, SIGNAL(sigCloseAction()));
    330330    addAction(m_pCloseAction);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette