git-svn-id: svn://db.shs.com.ru/libs@480 a8b55f48-bf90-11e4-a774-851b48703e85
This commit is contained in:
@@ -137,7 +137,10 @@ QString QAD::IODevice::toString() const {
|
||||
}
|
||||
PropertyStorage ps = props;
|
||||
foreach (const PropertyStorage::Property & p, ps) {
|
||||
s += ", " + p.name + "=\"" + p.value.toString() + "\"";
|
||||
QString vs = p.value.toString();
|
||||
if (p.value.type() == QVariant::StringList)
|
||||
vs = p.value.toStringList().join(";");
|
||||
s += ", " + p.name + "=\"" + vs + "\"";
|
||||
}
|
||||
s += ")";
|
||||
return s;
|
||||
|
||||
Reference in New Issue
Block a user