aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2012-11-20 10:53:52 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-20 15:48:15 +0100
commit6c1d43060af15b2f80487d9982f5ef8423cfed8b (patch)
tree89499ab34d821978d55e304038f41be7339dbf55
parent5e975a312412b63cb4993931923360bfe5a105b4 (diff)
Fix syncqt-warnings.
Use include with module name in the public headers. Change-Id: I50d3767a5538bc3f935ebf61b56894c8f0461981 Reviewed-by: Christopher Adams <chris.adams@jollamobile.com>
-rw-r--r--src/quick/scenegraph/coreapi/qsgnode.h2
-rw-r--r--src/quick/scenegraph/util/qsgsimplerectnode.h2
-rw-r--r--src/quick/scenegraph/util/qsgsimpletexturenode.h2
-rw-r--r--src/quick/scenegraph/util/qsgtextureprovider.h4
4 files changed, 5 insertions, 5 deletions
diff --git a/src/quick/scenegraph/coreapi/qsgnode.h b/src/quick/scenegraph/coreapi/qsgnode.h
index 9271bc4d87..6d57dc9c33 100644
--- a/src/quick/scenegraph/coreapi/qsgnode.h
+++ b/src/quick/scenegraph/coreapi/qsgnode.h
@@ -42,7 +42,7 @@
#ifndef NODE_H
#define NODE_H
-#include "qsggeometry.h"
+#include <QtQuick/qsggeometry.h>
#include <QtGui/QMatrix4x4>
#include <float.h>
diff --git a/src/quick/scenegraph/util/qsgsimplerectnode.h b/src/quick/scenegraph/util/qsgsimplerectnode.h
index 008b995848..38eb6a8775 100644
--- a/src/quick/scenegraph/util/qsgsimplerectnode.h
+++ b/src/quick/scenegraph/util/qsgsimplerectnode.h
@@ -43,7 +43,7 @@
#define SOLIDRECTNODE_H
#include <QtQuick/qsgnode.h>
-#include "qsgflatcolormaterial.h"
+#include <QtQuick/qsgflatcolormaterial.h>
QT_BEGIN_HEADER
diff --git a/src/quick/scenegraph/util/qsgsimpletexturenode.h b/src/quick/scenegraph/util/qsgsimpletexturenode.h
index b979659a54..cf5744bf31 100644
--- a/src/quick/scenegraph/util/qsgsimpletexturenode.h
+++ b/src/quick/scenegraph/util/qsgsimpletexturenode.h
@@ -44,7 +44,7 @@
#include <QtQuick/qsgnode.h>
#include <QtQuick/qsggeometry.h>
-#include "qsgtexturematerial.h"
+#include <QtQuick/qsgtexturematerial.h>
QT_BEGIN_HEADER
diff --git a/src/quick/scenegraph/util/qsgtextureprovider.h b/src/quick/scenegraph/util/qsgtextureprovider.h
index 8dc82a4aa3..b2c63050b6 100644
--- a/src/quick/scenegraph/util/qsgtextureprovider.h
+++ b/src/quick/scenegraph/util/qsgtextureprovider.h
@@ -42,8 +42,8 @@
#ifndef QSGTEXTUREPROVIDER_H
#define QSGTEXTUREPROVIDER_H
-#include "qsgtexture.h"
-#include "qobject.h"
+#include <QtQuick/qsgtexture.h>
+#include <QtCore/qobject.h>
QT_BEGIN_HEADER