Changeset 85683 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Aug 11, 2020 11:03:42 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r85285 r85683 1602 1602 , uLogHistoryCount(3) 1603 1603 , fExclusiveHwVirt(true) 1604 , fVBoxUpdateEnabled(true) 1605 , uVBoxUpdateCount(0) 1606 , uVBoxUpdateFrequency(1) 1607 , uVBoxUpdateTarget(VBoxUpdateTarget_Stable) 1604 1608 { 1605 1609 #if defined(RT_OS_DARWIN) || defined(RT_OS_WINDOWS) || defined(RT_OS_SOLARIS) … … 2246 2250 fCopyProxySettingsFromExtraData = true; 2247 2251 pelmGlobalChild->getAttributeValue("proxyUrl", systemProperties.strProxyUrl); 2252 pelmGlobalChild->getAttributeValue("VBoxUpdateEnabled", systemProperties.fVBoxUpdateEnabled); 2253 pelmGlobalChild->getAttributeValue("VBoxUpdateCount", systemProperties.uVBoxUpdateCount); 2254 pelmGlobalChild->getAttributeValue("VBoxUpdateFrequency", systemProperties.uVBoxUpdateFrequency); 2255 pelmGlobalChild->getAttributeValue("VBoxUpdateTarget", systemProperties.uVBoxUpdateTarget); 2256 pelmGlobalChild->getAttributeValue("VBoxUpdateLastCheckDate", 2257 systemProperties.strVBoxUpdateLastCheckDate); 2248 2258 } 2249 2259 else if (pelmGlobalChild->nameEquals("ExtraData")) … … 2458 2468 pelmSysProps->setAttribute("proxyMode", systemProperties.uProxyMode); 2459 2469 pelmSysProps->setAttribute("exclusiveHwVirt", systemProperties.fExclusiveHwVirt); 2470 pelmSysProps->setAttribute("VBoxUpdateEnabled", systemProperties.fVBoxUpdateEnabled); 2471 pelmSysProps->setAttribute("VBoxUpdateCount", systemProperties.uVBoxUpdateCount); 2472 pelmSysProps->setAttribute("VBoxUpdateFrequency", systemProperties.uVBoxUpdateFrequency); 2473 pelmSysProps->setAttribute("VBoxUpdateTarget", systemProperties.uVBoxUpdateTarget); 2474 if (systemProperties.strVBoxUpdateLastCheckDate.length()) 2475 pelmSysProps->setAttribute("VBoxUpdateLastCheckDate", systemProperties.strVBoxUpdateLastCheckDate); 2460 2476 2461 2477 buildUSBDeviceFilters(*pelmGlobal->createChild("USBDeviceFilters"),
Note:
See TracChangeset
for help on using the changeset viewer.