- Timestamp:
- May 6, 2014 3:31:05 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extradata/UIExtraDataManager.cpp
r51196 r51197 652 652 return QStringList(); 653 653 654 /* Returns corresponding value: */ 655 return data[strKey].split(',', QString::SkipEmptyParts); 654 /* Few old extra-data string-lists were separated with 'semicolon' symbol. 655 * All new separated by 'comma'. We have to take that into account. */ 656 return data[strKey].split(QRegExp("[;,]"), QString::SkipEmptyParts); 656 657 } 657 658
Note:
See TracChangeset
for help on using the changeset viewer.