Explicitely prefix Qt includes with their respective Qt module
LMMS didn't compile successfully if individual paths to headers of each Qt module were not added to the list of include directories to be searched by the pre-processor. However it has to work this way, therefore I changed lines like #include <QGraphicsScene> to #include <QtGui/QGraphicsScene> Please care in the future! Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
This commit is contained in:
@@ -26,12 +26,12 @@
|
||||
#ifndef _BB_TCO_ITEM_H_
|
||||
#define _BB_TCO_ITEM_H_
|
||||
|
||||
#include <QtCore/QTimeLine>
|
||||
#include <QtCore/QVector>
|
||||
#include <QGraphicsScene>
|
||||
#include <QGraphicsItem>
|
||||
#include <QTimeLine>
|
||||
#include <QGraphicsItemAnimation>
|
||||
#include <QPainter>
|
||||
#include <QtGui/QGraphicsScene>
|
||||
#include <QtGui/QGraphicsItem>
|
||||
#include <QtGui/QGraphicsItemAnimation>
|
||||
#include <QtGui/QPainter>
|
||||
#include <math.h>
|
||||
|
||||
class trackContentObject;
|
||||
|
||||
@@ -27,11 +27,10 @@
|
||||
#define _PATTERN_ITEM_H_
|
||||
|
||||
#include <QtCore/QVector>
|
||||
#include <QGraphicsScene>
|
||||
#include <QGraphicsItem>
|
||||
#include <QTimeLine>
|
||||
#include <QGraphicsItemAnimation>
|
||||
#include <QPainter>
|
||||
#include <QtGui/QGraphicsScene>
|
||||
#include <QtGui/QGraphicsItem>
|
||||
#include <QtGui/QGraphicsItemAnimation>
|
||||
#include <QtGui/QPainter>
|
||||
#include <math.h>
|
||||
|
||||
#include "gui/tracks/track_content_object_item.h"
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
#define _TRACK_CONTAINER_SCENE_H
|
||||
|
||||
#include <QtCore/QVector>
|
||||
#include <QGraphicsScene>
|
||||
#include <QtGui/QGraphicsScene>
|
||||
|
||||
#include "track.h"
|
||||
|
||||
|
||||
@@ -26,12 +26,12 @@
|
||||
#ifndef TRACK_CONTENT_OBJECT_ITEM_H_
|
||||
#define TRACK_CONTENT_OBJECT_ITEM_H_
|
||||
|
||||
#include <QtCore/QTimeLine>
|
||||
#include <QtCore/QVector>
|
||||
#include <QGraphicsScene>
|
||||
#include <QGraphicsItem>
|
||||
#include <QTimeLine>
|
||||
#include <QGraphicsItemAnimation>
|
||||
#include <QPainter>
|
||||
#include <QtGui/QGraphicsScene>
|
||||
#include <QtGui/QGraphicsItem>
|
||||
#include <QtGui/QGraphicsItemAnimation>
|
||||
#include <QtGui/QPainter>
|
||||
#include <math.h>
|
||||
|
||||
#include "lmms_basics.h"
|
||||
|
||||
@@ -27,9 +27,9 @@
|
||||
#ifndef _LMMS_STYLE_H
|
||||
#define _LMMS_STYLE_H
|
||||
|
||||
#include <QtCore/QRect>
|
||||
#include <QtGui/QColor>
|
||||
|
||||
#include <QColor>
|
||||
#include <QRect>
|
||||
#include "lmms_basics.h"
|
||||
|
||||
class QPainter;
|
||||
|
||||
Reference in New Issue
Block a user