diff options
author | Leander Beernaert <[email protected]> | 2019-11-11 14:03:37 +0100 |
---|---|---|
committer | Leander Beernaert <[email protected]> | 2019-11-12 10:35:26 +0000 |
commit | 70a218b90b78bae29e730aee5b75a725e29e286e (patch) | |
tree | 9ee0719fda41686c8c0f68c78425e9ac745a6396 /tests/manual/qhttpnetworkconnection/main.cpp | |
parent | 04e86bab13c8c33aaec0b40db34b52db9b78f326 (diff) |
Fix compile errors related to missing Qt:: namespace
Change-Id: I092a26ef38b08c52d84adb027a1b1bdee8cc7f6b
Reviewed-by: Simon Hausmann <[email protected]>
(cherry picked from commit ce187c4f0e57d5053583613aeedbc89024bae240)
Reviewed-by: Alexandru Croitor <[email protected]>
Diffstat (limited to 'tests/manual/qhttpnetworkconnection/main.cpp')
-rw-r--r-- | tests/manual/qhttpnetworkconnection/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/qhttpnetworkconnection/main.cpp b/tests/manual/qhttpnetworkconnection/main.cpp index 5b670a51e2b..d67d76699c0 100644 --- a/tests/manual/qhttpnetworkconnection/main.cpp +++ b/tests/manual/qhttpnetworkconnection/main.cpp @@ -58,7 +58,7 @@ void tst_qhttpnetworkconnection::bigRemoteFile() QVERIFY(!QTestEventLoop::instance().timeout()); size = reply->size(); delete reply; - qDebug() << "Finished!" << endl; + qDebug() << "Finished!" << Qt::endl; qDebug() << "Time:" << t.elapsed() << "msec"; qDebug() << "Bytes:" << size; qDebug() << "Speed:" << (size / qreal(1024)) / (t.elapsed() / qreal(1000)) << "KB/sec"; |