Changeset 79365 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsGeneral.cpp
- Timestamp:
- Jun 26, 2019 3:57:32 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131599
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsGeneral.cpp
r76606 r79365 22 22 /* GUI includes: */ 23 23 #include "QIWidgetValidator.h" 24 #include " VBoxGlobal.h"24 #include "UICommon.h" 25 25 #include "UIConverter.h" 26 26 #include "UIErrorString.h" … … 355 355 356 356 /* 'Basic' tab validations: */ 357 message.first = VBoxGlobal::removeAccelMark(mTwGeneral->tabText(0));357 message.first = UICommon::removeAccelMark(mTwGeneral->tabText(0)); 358 358 message.second.clear(); 359 359 … … 379 379 380 380 /* 'Encryption' tab validations: */ 381 message.first = VBoxGlobal::removeAccelMark(mTwGeneral->tabText(3));381 message.first = UICommon::removeAccelMark(mTwGeneral->tabText(3)); 382 382 message.second.clear(); 383 383 … … 388 388 #ifdef VBOX_WITH_EXTPACK 389 389 /* Encryption Extension Pack presence test: */ 390 const CExtPack extPack = vboxGlobal().virtualBox().GetExtensionPackManager().Find(GUI_ExtPackName);390 const CExtPack extPack = uiCommon().virtualBox().GetExtensionPackManager().Find(GUI_ExtPackName); 391 391 if (extPack.isNull() || !extPack.GetUsable()) 392 392 { … … 705 705 { 706 706 // Must update long mode CPU feature bit when os type changed: 707 CVirtualBox vbox = vboxGlobal().virtualBox();707 CVirtualBox vbox = uiCommon().virtualBox(); 708 708 // Should we check global object getters? 709 709 const CGuestOSType &comNewType = vbox.GetGuestOSType(newGeneralData.m_strGuestOsTypeId);
Note:
See TracChangeset
for help on using the changeset viewer.