mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 10:07:58 +02:00
Fix for compilation errors on linux
This commit is contained in:
parent
fea030b9a0
commit
df26f18222
2 changed files with 7 additions and 7 deletions
|
@ -7,10 +7,10 @@
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
//
|
//
|
||||||
|
|
||||||
#include <qjsondocument.h>
|
#include <QJsonDocument>
|
||||||
#include <qjsonobject.h>
|
#include <QJsonObject>
|
||||||
#include <qjsonarray.h>
|
#include <QJsonArray>
|
||||||
#include <qfile.h>
|
#include <QFile>
|
||||||
|
|
||||||
#include "AnimNode.h"
|
#include "AnimNode.h"
|
||||||
#include "AnimClip.h"
|
#include "AnimClip.h"
|
||||||
|
|
|
@ -12,9 +12,9 @@
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
#include <QString.h>
|
#include <QString>
|
||||||
#include <QUrl.h>
|
#include <QUrl>
|
||||||
#include <QNetworkReply.h>
|
#include <QNetworkReply>
|
||||||
|
|
||||||
#include "AnimNode.h"
|
#include "AnimNode.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue