This commit is contained in:
Nyall Dawson 2022-10-31 15:00:23 +10:00
parent 3a89b5505b
commit c6e349914e

View File

@ -33,7 +33,8 @@ class ReplayNmeaConnection : public QgsNmeaConnection
{
mBuffer = new QBuffer();
setSource( mBuffer );
Q_ASSERT( connect() );
bool ok = connect();
Q_ASSERT( ok );
}
QgsGpsInformation push( const QString &message )