Change uses of {to,from}Ascii to {to,from}Latin1
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: Ic591779a3431999c007fb0ff362c7e25ce54097e Reviewed-by: Jonas Rabbe <jonas.rabbe@gmail.com>
This commit is contained in:
committed by
Qt by Nokia
parent
025f4d2ee1
commit
b2b92dad82
@@ -122,9 +122,9 @@ void tst_QAbstractVideoBuffer::handleType_data()
|
||||
// User handles are different
|
||||
|
||||
QTest::newRow("user1")
|
||||
<< QAbstractVideoBuffer::UserHandle << QString::fromAscii("UserHandle(1000)");
|
||||
<< QAbstractVideoBuffer::UserHandle << QString::fromLatin1("UserHandle(1000)");
|
||||
QTest::newRow("user2")
|
||||
<< QAbstractVideoBuffer::HandleType(QAbstractVideoBuffer::UserHandle + 1) << QString::fromAscii("UserHandle(1001)");
|
||||
<< QAbstractVideoBuffer::HandleType(QAbstractVideoBuffer::UserHandle + 1) << QString::fromLatin1("UserHandle(1001)");
|
||||
}
|
||||
|
||||
void tst_QAbstractVideoBuffer::handleType()
|
||||
|
||||
Reference in New Issue
Block a user