1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-30 15:52:12 +01:00

Merge branch 'next' into corvuscorax/onboardlogging

This commit is contained in:
Corvus Corax 2013-11-16 18:22:01 +01:00
commit f25926d4bc
39 changed files with 48 additions and 55 deletions

View File

@ -33,7 +33,6 @@
namespace Core {
namespace Internal {
class MainWindow;
class CorePlugin : public ExtensionSystem::IPlugin {
@ -54,7 +53,6 @@ public slots:
private:
MainWindow *m_mainWindow;
};
} // namespace Internal
} // namespace Core

View File

@ -44,9 +44,9 @@
#include "uavobjectmanager.h"
LoggingConnection::LoggingConnection(LoggingPlugin *loggingPlugin):
loggingPlugin(loggingPlugin),
m_deviceOpened(false)
LoggingConnection::LoggingConnection(LoggingPlugin *loggingPlugin) :
loggingPlugin(loggingPlugin),
m_deviceOpened(false)
{}
LoggingConnection::~LoggingConnection()
@ -288,14 +288,12 @@ void LoggingThread::transactionCompleted(UAVObject *obj, bool success)
LoggingPlugin::LoggingPlugin() :
state(IDLE),
loggingThread(NULL),
logConnection(new LoggingConnection(this)),
mf(NULL),
cmd(NULL)
{
}
state(IDLE),
loggingThread(NULL),
logConnection(new LoggingConnection(this)),
mf(NULL),
cmd(NULL)
{}
LoggingPlugin::~LoggingPlugin()
{

View File

@ -69,7 +69,7 @@ private:
QQueue<UAVObject *> queue;
GCSTelemetryStats *gcsStatsObj;
FlightTelemetryStats *flightStatsObj;
FirmwareIAPObj* firmwareIAPObj;
FirmwareIAPObj *firmwareIAPObj;
QTimer *statsTimer;
UAVObject *objPending;
QMutex *mutex;

View File

@ -32,11 +32,9 @@
#include <extensionsystem/iplugin.h>
namespace Welcome {
class WelcomeMode;
namespace Internal {
class WelcomePlugin
: public ExtensionSystem::IPlugin {
Q_OBJECT
@ -53,7 +51,6 @@ public:
private:
WelcomeMode *m_welcomeMode;
};
} // namespace Welcome
} // namespace Internal