summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/codecs/qtextcodec/tst_qtextcodec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/codecs/qtextcodec/tst_qtextcodec.cpp')
-rw-r--r--tests/auto/corelib/codecs/qtextcodec/tst_qtextcodec.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/corelib/codecs/qtextcodec/tst_qtextcodec.cpp b/tests/auto/corelib/codecs/qtextcodec/tst_qtextcodec.cpp
index cbeca963d3..db3cc6c766 100644
--- a/tests/auto/corelib/codecs/qtextcodec/tst_qtextcodec.cpp
+++ b/tests/auto/corelib/codecs/qtextcodec/tst_qtextcodec.cpp
@@ -1946,7 +1946,7 @@ static QByteArray loadAndConvert(const QByteArray &codecName)
{
QTextCodec *c = QTextCodec::codecForName(codecName);
if (!c) {
- qDebug() << "WARNING " << codecName << " not found? ";
+ qWarning() << "WARNING" << codecName << "not found?";
return QByteArray();
}
QString str = QString::fromLatin1(codecName);
@@ -1959,7 +1959,7 @@ static int loadAndConvertMIB(int mib)
{
QTextCodec *c = QTextCodec::codecForMib(mib);
if (!c) {
- qDebug() << "WARNING " << mib << " not found? ";
+ qWarning() << "WARNING" << mib << "not found?";
return 0;
}
QString str = QString::number(mib);