1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

Merge pull request #47 from parched/qt5_5_compilation_fix

Fixed missing QDataStream includes to make compilation on qt 5.5 work
This commit is contained in:
a*morale 2015-07-20 23:09:15 +02:00
commit 2422706ba4
5 changed files with 5 additions and 0 deletions

View File

@ -36,6 +36,7 @@
#include <QSettings>
#include <QDomElement>
#include <QObject>
#include <QDataStream>
class XMLCONFIG_EXPORT XmlConfig : QObject {
Q_OBJECT

View File

@ -29,6 +29,7 @@
#define XPLANESIMULATOR10_H
#include <QObject>
#include <QDataStream>
#include <simulator.h>
class XplaneSimulator10 : public Simulator {

View File

@ -29,6 +29,7 @@
#define XPLANESIMULATOR9_H
#include <QObject>
#include <QDataStream>
#include <simulator.h>
class XplaneSimulator9 : public Simulator {

View File

@ -31,6 +31,7 @@
#include <QAbstractTableModel>
#include <QList>
#include <QDataStream>
#include "notificationitem.h"
enum ColumnNames { eMessageName, eRepeatValue, eExpireTimer, eTurnOn };

View File

@ -31,6 +31,7 @@
#include <QtNetwork/QLocalServer>
#include <QtNetwork/QLocalSocket>
#include <QtCore/QDir>
#include <QDataStream>
namespace SharedTools {
class QtLocalPeer : public QObject {