Change remaining uses of {to,from}Ascii to {to,from}Latin1 [QtXml]
This operation should be a no-op anyway, since at this point in time, the fromAscii and toAscii functions simply call their fromLatin1 and toLatin1 counterparts. Task-number: QTBUG-21872 Change-Id: I7e7202e6a1a84699ae0d43e4b2e7ee9ec87ed0b6 Reviewed-by: Lars Knoll <lars.knoll@nokia.com>bb10
parent
afbdf3b1cc
commit
5e2590b537
|
|
@ -1563,7 +1563,7 @@ QString QXmlInputSource::fromRawData(const QByteArray &data, bool beginning)
|
|||
{
|
||||
#ifdef QT_NO_TEXTCODEC
|
||||
Q_UNUSED(beginning);
|
||||
return QString::fromAscii(data.constData(), data.size());
|
||||
return QString::fromLatin1(data.constData(), data.size());
|
||||
#else
|
||||
if (data.size() == 0)
|
||||
return QString();
|
||||
|
|
|
|||
|
|
@ -138,10 +138,10 @@ public slots:
|
|||
{
|
||||
QUrl url("http://127.0.0.1:1088");
|
||||
QNetworkRequest req(url);
|
||||
req.setRawHeader("POST", url.path().toAscii());
|
||||
req.setRawHeader("POST", url.path().toLatin1());
|
||||
req.setRawHeader("user-agent", "xml-test");
|
||||
req.setRawHeader("keep-alive", "false");
|
||||
req.setRawHeader("host", url.host().toAscii());
|
||||
req.setRawHeader("host", url.host().toLatin1());
|
||||
|
||||
QByteArray xmlrpc("<methodCall>\r\n\
|
||||
<methodName>SFD.GetVersion</methodName>\r\n\
|
||||
|
|
|
|||
Loading…
Reference in New Issue