summaryrefslogtreecommitdiffstats
path: root/examples/charts/piechartdrilldown
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/piechartdrilldown
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/piechartdrilldown')
-rw-r--r--examples/charts/piechartdrilldown/drilldownchart.h2
-rw-r--r--examples/charts/piechartdrilldown/drilldownslice.h2
-rw-r--r--examples/charts/piechartdrilldown/main.cpp12
3 files changed, 8 insertions, 8 deletions
diff --git a/examples/charts/piechartdrilldown/drilldownchart.h b/examples/charts/piechartdrilldown/drilldownchart.h
index 554b6651..c1d51529 100644
--- a/examples/charts/piechartdrilldown/drilldownchart.h
+++ b/examples/charts/piechartdrilldown/drilldownchart.h
@@ -20,7 +20,7 @@
#ifndef DRILLDOWNCHART_H
#define DRILLDOWNCHART_H
-#include <QChart>
+#include <QtCharts/QChart>
QT_CHARTS_BEGIN_NAMESPACE
class QAbstractSeries;
diff --git a/examples/charts/piechartdrilldown/drilldownslice.h b/examples/charts/piechartdrilldown/drilldownslice.h
index 9743e852..aea50646 100644
--- a/examples/charts/piechartdrilldown/drilldownslice.h
+++ b/examples/charts/piechartdrilldown/drilldownslice.h
@@ -20,7 +20,7 @@
#ifndef DRILLDOWNSLICE_H
#define DRILLDOWNSLICE_H
-#include <QPieSlice>
+#include <QtCharts/QPieSlice>
QT_CHARTS_BEGIN_NAMESPACE
class QAbstractSeries;
diff --git a/examples/charts/piechartdrilldown/main.cpp b/examples/charts/piechartdrilldown/main.cpp
index a32587ff..2ab41527 100644
--- a/examples/charts/piechartdrilldown/main.cpp
+++ b/examples/charts/piechartdrilldown/main.cpp
@@ -20,12 +20,12 @@
#include "drilldownchart.h"
#include "drilldownslice.h"
-#include <QApplication>
-#include <QMainWindow>
-#include <QTime>
-#include <QChartView>
-#include <QLegend>
-#include <QPieSeries>
+#include <QtWidgets/QApplication>
+#include <QtWidgets/QMainWindow>
+#include <QtCore/QTime>
+#include <QtCharts/QChartView>
+#include <QtCharts/QLegend>
+#include <QtCharts/QPieSeries>
QT_CHARTS_USE_NAMESPACE