Browse Source

Renamed configuration.h to QGCConfig.h to avoid issues with opmapcontrol's configuration.h

QGC4.4
Bryant Mairs 11 years ago
parent
commit
62d221006a
  1. 2
      qgroundcontrol.pro
  2. 2
      src/QGC.h
  3. 0
      src/QGCConfig.h
  4. 2
      src/comm/OpalLink.h
  5. 2
      src/comm/QGCFlightGearLink.h
  6. 2
      src/comm/QGCJSBSimLink.h
  7. 2
      src/comm/QGCXPlaneLink.h
  8. 4
      src/comm/SerialLink.h
  9. 2
      src/comm/TCPLink.h
  10. 2
      src/comm/UDPLink.h
  11. 2
      src/ui/configuration/terminalconsole.cpp

2
qgroundcontrol.pro

@ -406,7 +406,7 @@ HEADERS += \ @@ -406,7 +406,7 @@ HEADERS += \
src/ui/linechart/LinechartPlot.h \
src/ui/linechart/Scrollbar.h \
src/ui/linechart/ScrollZoomer.h \
src/configuration.h \
src/QGCConfig.h \
src/ui/uas/UASView.h \
src/ui/CameraView.h \
src/comm/MAVLinkSimulationLink.h \

2
src/QGC.h

@ -28,7 +28,7 @@ @@ -28,7 +28,7 @@
#include <QColor>
#include <QThread>
#include "configuration.h"
#include "QGCConfig.h"
/* Windows fixes */

0
src/configuration.h → src/QGCConfig.h

2
src/comm/OpalLink.h

@ -44,7 +44,7 @@ This file is part of the QGROUNDCONTROL project @@ -44,7 +44,7 @@ This file is part of the QGROUNDCONTROL project
#include "LinkManager.h"
#include "MG.h"
#include "QGCMAVLink.h"
#include "configuration.h"
#include "QGCConfig.h"
#include "OpalRT.h"
#include "ParameterList.h"
#include "Parameter.h"

2
src/comm/QGCFlightGearLink.h

@ -39,7 +39,7 @@ This file is part of the QGROUNDCONTROL project @@ -39,7 +39,7 @@ This file is part of the QGROUNDCONTROL project
#include <QTimer>
#include <QProcess>
#include <LinkInterface.h>
#include <configuration.h>
#include "QGCConfig.h"
#include "UASInterface.h"
#include "QGCHilLink.h"
#include <QGCHilFlightGearConfiguration.h>

2
src/comm/QGCJSBSimLink.h

@ -39,7 +39,7 @@ This file is part of the QGROUNDCONTROL project @@ -39,7 +39,7 @@ This file is part of the QGROUNDCONTROL project
#include <QTimer>
#include <QProcess>
#include <LinkInterface.h>
#include <configuration.h>
#include "QGCConfig.h"
#include "UASInterface.h"
#include "QGCHilLink.h"

2
src/comm/QGCXPlaneLink.h

@ -39,7 +39,7 @@ This file is part of the QGROUNDCONTROL project @@ -39,7 +39,7 @@ This file is part of the QGROUNDCONTROL project
#include <QTimer>
#include <QProcess>
#include <LinkInterface.h>
#include <configuration.h>
#include "QGCConfig.h"
#include "UASInterface.h"
#include "QGCHilLink.h"

4
src/comm/SerialLink.h

@ -36,7 +36,7 @@ This file is part of the QGROUNDCONTROL project @@ -36,7 +36,7 @@ This file is part of the QGROUNDCONTROL project
#include <QThread>
#include <QMutex>
#include <QString>
#include <configuration.h>
#include "QGCConfig.h"
#include "SerialLinkInterface.h"
// We use QSerialPort::SerialPortError in a signal so we must declare it as a meta type
@ -67,7 +67,7 @@ public: @@ -67,7 +67,7 @@ public:
int stopBits=1);
~SerialLink();
static const int poll_interval = SERIAL_POLL_INTERVAL; ///< Polling interval, defined in configuration.h
static const int poll_interval = SERIAL_POLL_INTERVAL; ///< Polling interval, defined in QGCConfig.h
/** @brief Get a list of the currently available ports */
QList<QString> getCurrentPorts();

2
src/comm/TCPLink.h

@ -35,7 +35,7 @@ @@ -35,7 +35,7 @@
#include <QMutex>
#include <QHostAddress>
#include <LinkInterface.h>
#include <configuration.h>
#include "QGCConfig.h"
// Even though QAbstractSocket::SocketError is used in a signal by Qt, Qt doesn't declare it as a meta type.
// This in turn causes debug output to be kicked out about not being able to queue the signal. We declare it

2
src/comm/UDPLink.h

@ -37,7 +37,7 @@ This file is part of the QGROUNDCONTROL project @@ -37,7 +37,7 @@ This file is part of the QGROUNDCONTROL project
#include <QMutex>
#include <QUdpSocket>
#include <LinkInterface.h>
#include <configuration.h>
#include "QGCConfig.h"
class UDPLink : public LinkInterface
{

2
src/ui/configuration/terminalconsole.cpp

@ -37,7 +37,7 @@ This file is part of the APM_PLANNER project @@ -37,7 +37,7 @@ This file is part of the APM_PLANNER project
#include "terminalconsole.h"
#include "ui_terminalconsole.h"
#include "console.h"
#include "configuration.h"
#include "QGCConfig.h"
#include <QDebug>
#include <QSettings>

Loading…
Cancel
Save