From a2a00eb044596f3e3f628b6b20b38a5ba524915c Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Tue, 13 Oct 2015 09:46:56 +0200 Subject: Tests: Fix single-character string literals. Use character literals where applicable. Change-Id: I1a026c320079ee5ca6f70be835d5a541deee2dd1 Reviewed-by: Simon Hausmann --- tests/manual/qscreen/propertyfield.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/manual/qscreen') diff --git a/tests/manual/qscreen/propertyfield.cpp b/tests/manual/qscreen/propertyfield.cpp index 01f38624d4..a8cf90c9bb 100644 --- a/tests/manual/qscreen/propertyfield.cpp +++ b/tests/manual/qscreen/propertyfield.cpp @@ -87,7 +87,7 @@ void PropertyField::propertyChanged() m_lastChangeTime = QTime::currentTime().addSecs(-5); } - qDebug() << " " << QString::fromUtf8(m_prop.name()) << ":" << val; + qDebug() << " " << QString::fromUtf8(m_prop.name()) << ':' << val; // If the value has recently changed, show the change if (text != m_lastText || m_lastChangeTime.elapsed() < 1000) { setText(m_lastTextShowing + " -> " + text); -- cgit v1.2.3