Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
removing qDebug() from compass plugin
  • Loading branch information
mbernasocchi committed Mar 28, 2012
1 parent 48a0612 commit 38ea8ea
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/plugins/compass/compass.cpp
Expand Up @@ -18,6 +18,7 @@
***************************************************************************/

#include "compass.h"
#include "qgslogger.h"

Compass::Compass()
{
Expand Down Expand Up @@ -61,7 +62,7 @@ bool Compass::start()
mSensor.start();
if ( !mSensor.isActive() )
{
qDebug() << "Compasssensor didn't start!" << endl;
QgsDebugMsg( "Compasssensor didn't start!" );
return false;
}
return true;
Expand All @@ -72,7 +73,7 @@ bool Compass::stop()
mSensor.stop();
if ( mSensor.isActive() )
{
qDebug() << "Compasssensor didn't stop!" << endl;
QgsDebugMsg( "Compasssensor didn't stop!" );
return false;
}
return true;
Expand Down

0 comments on commit 38ea8ea

Please sign in to comment.