VirtualBox

Changeset 94580 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Apr 12, 2022 8:46:51 PM (3 years ago)
Author:
vboxsync
Message:

Main/Settings: Fix update check attribute naming, they are too long and violate our usual naming style. bugref:7983

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/xml/Settings.cpp

    r93561 r94580  
    23132313                            fCopyProxySettingsFromExtraData = true;
    23142314                        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",
    23202320                            systemProperties.strVBoxUpdateLastCheckDate);
    23212321                        pelmGlobalChild->getAttributeValue("LanguageId", systemProperties.strLanguageId);
     
    25652565    pelmSysProps->setAttribute("proxyMode", systemProperties.uProxyMode);
    25662566    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);
    25712571    if (systemProperties.strVBoxUpdateLastCheckDate.length())
    2572         pelmSysProps->setAttribute("VBoxUpdateLastCheckDate", systemProperties.strVBoxUpdateLastCheckDate);
     2572        pelmSysProps->setAttribute("updateLastCheckDate", systemProperties.strVBoxUpdateLastCheckDate);
    25732573    if (systemProperties.strLanguageId.isNotEmpty())
    25742574        pelmSysProps->setAttribute("LanguageId", systemProperties.strLanguageId);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette