Skip to content

Commit

Permalink
Patch from Michal Klatecki - see ticket #3325
Browse files Browse the repository at this point in the history
  • Loading branch information
timlinux committed Jul 19, 2011
1 parent 1a761e9 commit 299b933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/gps/qgsgpsdconnection.cpp
Expand Up @@ -41,7 +41,7 @@ void QgsGpsdConnection::connected()
{
QgsDebugMsg( "connected!" );
QTcpSocket *socket = qobject_cast< QTcpSocket * >( mSource );
socket->write( QString( "?WATCH={\"enable\":true,\"nmea\":true%1};" ).arg( mDevice.isEmpty() ? mDevice : QString( ",\"device\":%1" ).arg( mDevice ) ).toUtf8() );
socket->write( QString( "?WATCH={\"enable\":true,\"raw\":true%1};" ).arg( mDevice.isEmpty() ? mDevice : QString( ",\"device\":%1" ).arg( mDevice ) ).toUtf8() );
}

void QgsGpsdConnection::error( QAbstractSocket::SocketError socketError )
Expand Down

0 comments on commit 299b933

Please sign in to comment.