Changeset 59200 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Dec 21, 2015 2:42:14 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104823
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/UIVMInfoDialog.cpp
r59196 r59200 671 671 VBoxGlobal::tr("Active", "details report (Unrestricted Execution)") : 672 672 VBoxGlobal::tr("Inactive", "details report (Unrestricted Execution)"); 673 const QString strParavirtProvider = gpConverter->toString(m .GetEffectiveParavirtProvider());673 const QString strParavirtProvider = gpConverter->toString(m_pMachineWindow->uisession()->paraVirtProvider()); 674 674 675 675 /* Guest information: */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIIndicatorsPool.cpp
r59196 r59200 850 850 851 851 /* Paravirtualization feature: */ 852 const QString strParavirt = gpConverter->toString(m achine.GetEffectiveParavirtProvider());852 const QString strParavirt = gpConverter->toString(m_pSession->paraVirtProvider()); 853 853 854 854 /* Prepare tool-tip: */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r59196 r59200 958 958 , m_fIsHWVirtExNestedPagingEnabled(false) 959 959 , m_fIsHWVirtExUXEnabled(false) 960 /* VM's effective paravirtualization provider: */ 961 , m_paraVirtProvider(KParavirtProvider_None) 960 962 { 961 963 } … … 1954 1956 /* Load whether the VM is currently making use of the unrestricted execution feature of VT-x: */ 1955 1957 m_fIsHWVirtExUXEnabled = m_debugger.GetHWVirtExUXEnabled(); 1958 /* Load VM's effective paravirtualization provider: */ 1959 m_paraVirtProvider = m_machine.GetEffectiveParavirtProvider(); 1956 1960 } 1957 1961 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.h
r59196 r59200 263 263 bool isHWVirtExUXEnabled() const { return m_fIsHWVirtExUXEnabled; } 264 264 /** @} */ 265 266 /** Returns VM's effective paravirtualization provider. */ 267 KParavirtProvider paraVirtProvider() const { return m_paraVirtProvider; } 265 268 266 269 signals: … … 535 538 /** @} */ 536 539 540 /** Holds VM's effective paravirtualization provider. */ 541 KParavirtProvider m_paraVirtProvider; 542 537 543 /* Friend classes: */ 538 544 friend class UIConsoleEventHandler;
Note:
See TracChangeset
for help on using the changeset viewer.