Commit e6086127 authored by Don Gagne's avatar Don Gagne

Fix uninitialized variables

parent c90bc0bd
......@@ -12,9 +12,12 @@
#include "QGCCorePlugin.h"
QGCPositionManager::QGCPositionManager(QGCApplication* app, QGCToolbox* toolbox)
: QGCTool(app, toolbox)
, _updateInterval(0)
, _currentSource(nullptr)
: QGCTool (app, toolbox)
, _updateInterval (0)
, _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