Commit e6086127 authored by Don Gagne's avatar Don Gagne

Fix uninitialized variables

parent c90bc0bd
...@@ -12,9 +12,12 @@ ...@@ -12,9 +12,12 @@
#include "QGCCorePlugin.h" #include "QGCCorePlugin.h"
QGCPositionManager::QGCPositionManager(QGCApplication* app, QGCToolbox* toolbox) QGCPositionManager::QGCPositionManager(QGCApplication* app, QGCToolbox* toolbox)
: QGCTool(app, toolbox) : QGCTool (app, toolbox)
, _updateInterval(0) , _updateInterval (0)
, _currentSource(nullptr) , _currentSource (NULL)
, _defaultSource (NULL)
, _nmeaSource (NULL)
, _simulatedSource (NULL)
{ {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment