diff options
author | Robin Burchell <robin.burchell@crimson.no> | 2017-01-05 21:03:23 +0100 |
---|---|---|
committer | Robin Burchell <robin.burchell@crimson.no> | 2017-01-13 22:40:49 +0000 |
commit | beb4f4c4c98b8c6ad634b13e07aaf9b7a9c54d4a (patch) | |
tree | 2a055d776cbf6528b83d22c0c3d73aa7812867a6 /src/imports/positioning | |
parent | d08213709959cd52f55b8a277e7485ae14e441c2 (diff) | |
download | qtlocation-beb4f4c4c98b8c6ad634b13e07aaf9b7a9c54d4a.tar.gz |
QtLocation: Use the newly-introduced qmlWarning instead of qmlInfo
qmlInfo will shortly be returning info-level messages (as the name
hints), rather than warning level messages.
Change-Id: I941f716c4fbe0566e1e5b0ecf673faa7283cde10
Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/imports/positioning')
-rw-r--r-- | src/imports/positioning/qdeclarativepositionsource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imports/positioning/qdeclarativepositionsource.cpp b/src/imports/positioning/qdeclarativepositionsource.cpp index 35ff33b3..8be953f7 100644 --- a/src/imports/positioning/qdeclarativepositionsource.cpp +++ b/src/imports/positioning/qdeclarativepositionsource.cpp @@ -311,7 +311,7 @@ void QDeclarativePositionSource::setNmeaSource(const QUrl &nmeaSource) QTimer::singleShot(0, this, SLOT(start())); } } else { - qmlInfo(this) << QStringLiteral("Nmea file not found") << localFileName; + qmlWarning(this) << QStringLiteral("Nmea file not found") << localFileName; #ifdef QDECLARATIVE_POSITION_DEBUG qDebug() << "QDeclarativePositionSource NMEA File was not found: " << localFileName; #endif |