QHostAddress::toString: use QSB more
Change-Id: Id7d9675c5a8dd09d0edaaa34a28a07fead068109 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>bb10
parent
98e7da8e32
commit
3273c03b51
|
|
@ -706,7 +706,7 @@ QString QHostAddress::toString() const
|
|||
} else if (d->protocol == QHostAddress::IPv6Protocol) {
|
||||
QIPAddressUtils::toString(s, d->a6.c);
|
||||
if (!d->scopeId.isEmpty())
|
||||
s.append(u'%' + d->scopeId);
|
||||
s += u'%' + d->scopeId;
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue