Changeset 6076 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Dec 14, 2007 7:23:03 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 26769
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp
r6056 r6076 2886 2886 QString text = aStr; 2887 2887 2888 /* replace special entities, '&' -- first! */ 2889 text.replace ('&', "&"); 2890 text.replace ('<', "<"); 2891 text.replace ('>', ">"); 2892 text.replace ('\"', """); 2893 2888 2894 /* mark strings in single quotes with color */ 2889 2895 QRegExp rx = QRegExp ("((?:^|\\s)[(]?)'([^']*)'(?=[:.-!);]?(?:\\s|$))"); -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDlg.ui.h
r6056 r6076 2026 2026 } 2027 2027 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()); 2030 2032 2031 2033 /* Shared clipboard mode */
Note:
See TracChangeset
for help on using the changeset viewer.