Changeset 97772 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Dec 9, 2022 5:39:49 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154840
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDPrivate.cpp
r97761 r97772 1003 1003 * @returns Format list string. 1004 1004 * @param lstFormats GuestDnDMIMEList to convert. 1005 * @param strSep Separator to use between formats. 1006 * Uses DND_FORMATS_SEPARATOR_STR as default. 1005 1007 */ 1006 1008 /* static */ 1007 com::Utf8Str GuestDnD::toFormatString(const GuestDnDMIMEList &lstFormats )1009 com::Utf8Str GuestDnD::toFormatString(const GuestDnDMIMEList &lstFormats, const com::Utf8Str &strSep /* = DND_FORMATS_SEPARATOR_STR */) 1008 1010 { 1009 1011 com::Utf8Str strFormat; … … 1011 1013 { 1012 1014 const com::Utf8Str &f = lstFormats.at(i); 1013 strFormat += f + DND_FORMATS_SEPARATOR_STR;1015 strFormat += f + strSep; 1014 1016 } 1015 1017
Note:
See TracChangeset
for help on using the changeset viewer.