tst_qdom: Fix warning about character conversion,
warning C4309: 'argument' : truncation of constant value. Change-Id: I04262dcb71b916abeab27e7b8bc2ca6c875794d2 Reviewed-by: Mitch Curtis <mitch.curtis@digia.com>bb10
parent
3e56b01895
commit
9e069d95f4
|
|
@ -1705,8 +1705,8 @@ void tst_QDom::germanUmlautToByteArray() const
|
|||
QByteArray baseline("<a");
|
||||
|
||||
/* http://www.fileformat.info/info/unicode/char/00FC/index.htm */
|
||||
baseline += 0xC3;
|
||||
baseline += 0xBC;
|
||||
baseline += char(0xC3);
|
||||
baseline += char(0xBC);
|
||||
baseline += "b/>\n";
|
||||
|
||||
QCOMPARE(data, baseline);
|
||||
|
|
|
|||
Loading…
Reference in New Issue