summaryrefslogtreecommitdiffstats
path: root/tests/auto/unit/qabstractvideobuffer
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2012-05-03 16:58:59 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-04 13:36:08 +0200
commitb2b92dad82db4ed07a7eeb10f8e225d22d54a6c1 (patch)
tree7b3eaaabcd21c917d06f284e7ba95a5d91d7190a /tests/auto/unit/qabstractvideobuffer
parent025f4d2ee1cdc4a68e880854584f9bef0980b630 (diff)
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>
Diffstat (limited to 'tests/auto/unit/qabstractvideobuffer')
-rw-r--r--tests/auto/unit/qabstractvideobuffer/tst_qabstractvideobuffer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/unit/qabstractvideobuffer/tst_qabstractvideobuffer.cpp b/tests/auto/unit/qabstractvideobuffer/tst_qabstractvideobuffer.cpp
index 60c70f252..0c382a275 100644
--- a/tests/auto/unit/qabstractvideobuffer/tst_qabstractvideobuffer.cpp
+++ b/tests/auto/unit/qabstractvideobuffer/tst_qabstractvideobuffer.cpp
@@ -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()