Changeset 44560 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Feb 6, 2013 11:32:02 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83623
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/selector
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIActionPoolSelector.cpp
r44448 r44560 620 620 switch (m_iState) 621 621 { 622 case 1:622 case 0: 623 623 { 624 624 setName(QApplication::translate("UIActionPool", "S&tart")); … … 628 628 break; 629 629 } 630 case 2:630 case 1: 631 631 { 632 632 setName(QApplication::translate("UIActionPool", "S&how")); -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UISelectorWindow.cpp
r44453 r44560 1628 1628 /* Start/Show action is deremined by 1st item: */ 1629 1629 if (pItem && pItem->accessible()) 1630 m_pAction_Common_StartOrShow->setState(UIVMItem::isItemPoweredOff(pItem) ? 1 : 2);1630 m_pAction_Common_StartOrShow->setState(UIVMItem::isItemPoweredOff(pItem) ? 0 : 1); 1631 1631 else 1632 m_pAction_Common_StartOrShow->setState( 1);1632 m_pAction_Common_StartOrShow->setState(0); 1633 1633 1634 1634 /* Pause/Resume action is deremined by 1st started item: */
Note:
See TracChangeset
for help on using the changeset viewer.