Changeset 94580 in vbox for trunk/src/VBox
- Timestamp:
- Apr 12, 2022 8:46:51 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r93561 r94580 2313 2313 fCopyProxySettingsFromExtraData = true; 2314 2314 pelmGlobalChild->getAttributeValue("proxyUrl", systemProperties.strProxyUrl); 2315 pelmGlobalChild->getAttributeValue(" VBoxUpdateEnabled", systemProperties.fVBoxUpdateEnabled);2316 pelmGlobalChild->getAttributeValue(" VBoxUpdateCount", systemProperties.uVBoxUpdateCount);2317 pelmGlobalChild->getAttributeValue(" VBoxUpdateFrequency", systemProperties.uVBoxUpdateFrequency);2318 pelmGlobalChild->getAttributeValue(" VBoxUpdateTarget", systemProperties.uVBoxUpdateTarget);2319 pelmGlobalChild->getAttributeValue(" VBoxUpdateLastCheckDate",2315 pelmGlobalChild->getAttributeValue("updateEnabled", systemProperties.fVBoxUpdateEnabled); 2316 pelmGlobalChild->getAttributeValue("updateCount", systemProperties.uVBoxUpdateCount); 2317 pelmGlobalChild->getAttributeValue("updateFrequency", systemProperties.uVBoxUpdateFrequency); 2318 pelmGlobalChild->getAttributeValue("updateTarget", systemProperties.uVBoxUpdateTarget); 2319 pelmGlobalChild->getAttributeValue("updateLastCheckDate", 2320 2320 systemProperties.strVBoxUpdateLastCheckDate); 2321 2321 pelmGlobalChild->getAttributeValue("LanguageId", systemProperties.strLanguageId); … … 2565 2565 pelmSysProps->setAttribute("proxyMode", systemProperties.uProxyMode); 2566 2566 pelmSysProps->setAttribute("exclusiveHwVirt", systemProperties.fExclusiveHwVirt); 2567 pelmSysProps->setAttribute(" VBoxUpdateEnabled", systemProperties.fVBoxUpdateEnabled);2568 pelmSysProps->setAttribute(" VBoxUpdateCount", systemProperties.uVBoxUpdateCount);2569 pelmSysProps->setAttribute(" VBoxUpdateFrequency", systemProperties.uVBoxUpdateFrequency);2570 pelmSysProps->setAttribute(" VBoxUpdateTarget", systemProperties.uVBoxUpdateTarget);2567 pelmSysProps->setAttribute("updateEnabled", systemProperties.fVBoxUpdateEnabled); 2568 pelmSysProps->setAttribute("updateCount", systemProperties.uVBoxUpdateCount); 2569 pelmSysProps->setAttribute("updateFrequency", systemProperties.uVBoxUpdateFrequency); 2570 pelmSysProps->setAttribute("updateTarget", systemProperties.uVBoxUpdateTarget); 2571 2571 if (systemProperties.strVBoxUpdateLastCheckDate.length()) 2572 pelmSysProps->setAttribute(" VBoxUpdateLastCheckDate", systemProperties.strVBoxUpdateLastCheckDate);2572 pelmSysProps->setAttribute("updateLastCheckDate", systemProperties.strVBoxUpdateLastCheckDate); 2573 2573 if (systemProperties.strLanguageId.isNotEmpty()) 2574 2574 pelmSysProps->setAttribute("LanguageId", systemProperties.strLanguageId);
Note:
See TracChangeset
for help on using the changeset viewer.