Skip to content

Commit

Permalink
fix gpsd device selection
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@14378 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Oct 13, 2010
1 parent 1684936 commit 12a404a
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!" ); QgsDebugMsg( "connected!" );
QTcpSocket *socket = qobject_cast< QTcpSocket * >( mSource ); 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,\"nmea\":true%1};" ).arg( mDevice.isEmpty() ? mDevice : QString( ",\"device\":%1" ).arg( mDevice ) ).toUtf8() );
} }


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

0 comments on commit 12a404a

Please sign in to comment.