summaryrefslogtreecommitdiffstats
path: root/examples/charts/qmloscilloscope
diff options
context:
space:
mode:
authorTitta Heikkala <titta.heikkala@theqtcompany.com>2014-10-20 10:50:08 +0300
committerTitta Heikkala <titta.heikkala@theqtcompany.com>2014-10-20 13:28:52 +0300
commit929d943d1aabf414eaa6e402464124f18d4f2abc (patch)
tree41f45a47bc0692a6f107cfbbfc61361029d17f00 /examples/charts/qmloscilloscope
parentf6fba9e059d74a732a978234ae8271ff32ffd929 (diff)
Fix include syntax
The includes for the whole project are changed to syntax: '#include <module/class> Change-Id: If32f8b6c3f47516ad6bc30ed40789ea9042d5664 Task-number: QTRD-3373 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>
Diffstat (limited to 'examples/charts/qmloscilloscope')
-rw-r--r--examples/charts/qmloscilloscope/datasource.cpp8
-rw-r--r--examples/charts/qmloscilloscope/datasource.h4
2 files changed, 6 insertions, 6 deletions
diff --git a/examples/charts/qmloscilloscope/datasource.cpp b/examples/charts/qmloscilloscope/datasource.cpp
index ff651110..36918471 100644
--- a/examples/charts/qmloscilloscope/datasource.cpp
+++ b/examples/charts/qmloscilloscope/datasource.cpp
@@ -19,12 +19,12 @@
****************************************************************************/
#include "datasource.h"
-#include <QXYSeries>
-#include <QAreaSeries>
+#include <QtCharts/QXYSeries>
+#include <QtCharts/QAreaSeries>
#include <QtQuick/QQuickView>
#include <QtQuick/QQuickItem>
-#include <QDebug>
-#include <qmath.h>
+#include <QtCore/QDebug>
+#include <QtCore/QtMath>
QT_CHARTS_USE_NAMESPACE
diff --git a/examples/charts/qmloscilloscope/datasource.h b/examples/charts/qmloscilloscope/datasource.h
index 8cb8daa7..0461c162 100644
--- a/examples/charts/qmloscilloscope/datasource.h
+++ b/examples/charts/qmloscilloscope/datasource.h
@@ -21,8 +21,8 @@
#ifndef DATASOURCE_H
#define DATASOURCE_H
-#include <QObject>
-#include <QAbstractSeries>
+#include <QtCore/QObject>
+#include <QtCharts/QAbstractSeries>
class QQuickView;