Changeset 101183 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.cpp
- Timestamp:
- Sep 20, 2023 7:25:00 AM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICommon.cpp
r101035 r101183 63 63 #include "UIConverter.h" 64 64 #include "UIDesktopWidgetWatchdog.h" 65 #include "UIGuestOSTypeII.h" 65 66 #include "UIExtraDataDefs.h" 66 67 #include "UIExtraDataManager.h" … … 214 215 , m_fWrappersValid(false) 215 216 , m_fVBoxSVCAvailable(true) 217 , m_pGuestOSTypeManager(new UIGuestOSTypeManager) 216 218 , m_pThreadPool(0) 217 219 , m_pThreadPoolCloud(0) … … 224 226 UICommon::~UICommon() 225 227 { 228 delete m_pGuestOSTypeManager; 226 229 /* Unassign instance: */ 227 230 s_pInstance = 0; … … 3014 3017 { 3015 3018 const CGuestOSType os = guestOSTypes.at(i); 3019 //printf("%s -- %s -- %s\n", qPrintable(os.GetId()), qPrintable(os.GetVariant()), qPrintable(os.GetDescription())); 3016 3020 const QString strFamilyID = os.GetFamilyId(); 3017 3021 const QString strFamilyDescription = os.GetFamilyDescription(); … … 3026 3030 } 3027 3031 } 3028 3032 if (m_pGuestOSTypeManager) 3033 m_pGuestOSTypeManager->reCacheGuestOSTypes(guestOSTypes); 3029 3034 /* Mark wrappers valid: */ 3030 3035 m_fWrappersValid = true;
Note:
See TracChangeset
for help on using the changeset viewer.