summaryrefslogtreecommitdiffstats
path: root/examples/charts/stackedbarchartdrilldown
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/stackedbarchartdrilldown
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/stackedbarchartdrilldown')
-rw-r--r--examples/charts/stackedbarchartdrilldown/drilldownchart.cpp2
-rw-r--r--examples/charts/stackedbarchartdrilldown/drilldownchart.h2
-rw-r--r--examples/charts/stackedbarchartdrilldown/drilldownseries.h4
-rw-r--r--examples/charts/stackedbarchartdrilldown/main.cpp10
4 files changed, 9 insertions, 9 deletions
diff --git a/examples/charts/stackedbarchartdrilldown/drilldownchart.cpp b/examples/charts/stackedbarchartdrilldown/drilldownchart.cpp
index 1acfa172..02c73f4c 100644
--- a/examples/charts/stackedbarchartdrilldown/drilldownchart.cpp
+++ b/examples/charts/stackedbarchartdrilldown/drilldownchart.cpp
@@ -19,7 +19,7 @@
****************************************************************************/
#include "drilldownchart.h"
-#include <QBarCategoryAxis>
+#include <QtCharts/QBarCategoryAxis>
QT_CHARTS_USE_NAMESPACE
diff --git a/examples/charts/stackedbarchartdrilldown/drilldownchart.h b/examples/charts/stackedbarchartdrilldown/drilldownchart.h
index c75216f7..c2fb636d 100644
--- a/examples/charts/stackedbarchartdrilldown/drilldownchart.h
+++ b/examples/charts/stackedbarchartdrilldown/drilldownchart.h
@@ -21,7 +21,7 @@
#ifndef DRILLDOWNCHART_H
#define DRILLDOWNCHART_H
-#include <QChart>
+#include <QtCharts/QChart>
#include "drilldownseries.h"
QT_CHARTS_USE_NAMESPACE
diff --git a/examples/charts/stackedbarchartdrilldown/drilldownseries.h b/examples/charts/stackedbarchartdrilldown/drilldownseries.h
index 5a340839..dec2e9d5 100644
--- a/examples/charts/stackedbarchartdrilldown/drilldownseries.h
+++ b/examples/charts/stackedbarchartdrilldown/drilldownseries.h
@@ -21,8 +21,8 @@
#ifndef DRILLDOWNSERIES_H
#define DRILLDOWNSERIES_H
-#include <QStackedBarSeries>
-#include <QMap>
+#include <QtCharts/QStackedBarSeries>
+#include <QtCore/QMap>
QT_CHARTS_USE_NAMESPACE
diff --git a/examples/charts/stackedbarchartdrilldown/main.cpp b/examples/charts/stackedbarchartdrilldown/main.cpp
index 6a46520d..b0bc0420 100644
--- a/examples/charts/stackedbarchartdrilldown/main.cpp
+++ b/examples/charts/stackedbarchartdrilldown/main.cpp
@@ -18,11 +18,11 @@
**
****************************************************************************/
-#include <QApplication>
-#include <QMainWindow>
-#include <QChartView>
-#include <QBarSet>
-#include <QLegend>
+#include <QtWidgets/QApplication>
+#include <QtWidgets/QMainWindow>
+#include <QtCharts/QChartView>
+#include <QtCharts/QBarSet>
+#include <QtCharts/QLegend>
#include "drilldownseries.h"
#include "drilldownchart.h"