VirtualBox

Changeset 6076 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Dec 14, 2007 7:23:03 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
26769
Message:

Merged dmik/s2 branch (r25959:26751) to the trunk.

Location:
trunk/src/VBox/Frontends/VirtualBox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp

    r6056 r6076  
    28862886    QString text = aStr;
    28872887
     2888    /* replace special entities, '&' -- first! */
     2889        text.replace ('&', "&");
     2890    text.replace ('<', "&lt;");
     2891        text.replace ('>', "&gt;");
     2892        text.replace ('\"', "&quot;");
     2893
    28882894    /* mark strings in single quotes with color */
    28892895    QRegExp rx = QRegExp ("((?:^|\\s)[(]?)'([^']*)'(?=[:.-!);]?(?:\\s|$))");
  • trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDlg.ui.h

    r6056 r6076  
    20262026    }
    20272027
    2028     /* Description */
    2029     cmachine.SetDescription (teDescription->text());
     2028    /* Description (set empty to null to avoid an empty <Description> node
     2029     * in the settings file) */
     2030    cmachine.SetDescription (teDescription->text().isEmpty() ? QString::null :
     2031                             teDescription->text());
    20302032
    20312033    /* Shared clipboard mode */
Note: See TracChangeset for help on using the changeset viewer.

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