diff --git a/demos/chartthemes/themewidget.cpp b/demos/chartthemes/themewidget.cpp index 85763ef..71bb916 100644 --- a/demos/chartthemes/themewidget.cpp +++ b/demos/chartthemes/themewidget.cpp @@ -23,7 +23,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/src/barchart/barchart.pri b/src/barchart/barchart.pri index e0c0f89..a14c250 100644 --- a/src/barchart/barchart.pri +++ b/src/barchart/barchart.pri @@ -6,7 +6,7 @@ SOURCES += \ $$PWD/barchartitem.cpp \ $$PWD/percentbarchartitem.cpp \ $$PWD/groupedbarchartitem.cpp \ - $$PWD/qbarseries.cpp \ + $$PWD/qabstractbarseries.cpp \ $$PWD/qbarset.cpp \ $$PWD/qpercentbarseries.cpp \ $$PWD/qstackedbarseries.cpp \ @@ -23,14 +23,14 @@ PRIVATE_HEADERS += \ $$PWD/stackedbarchartitem_p.h \ $$PWD/groupedbarchartitem_p.h \ $$PWD/qbarset_p.h \ - $$PWD/qbarseries_p.h \ + $$PWD/qabstractbarseries_p.h \ $$PWD/qstackedbarseries_p.h\ $$PWD/qpercentbarseries_p.h \ $$PWD/qgroupedbarseries_p.h \ $$PWD/qbarmodelmapper_p.h PUBLIC_HEADERS += \ - $$PWD/qbarseries.h \ + $$PWD/qabstractbarseries.h \ $$PWD/qbarset.h \ $$PWD/qpercentbarseries.h \ $$PWD/qstackedbarseries.h \ diff --git a/src/barchart/barchartitem.cpp b/src/barchart/barchartitem.cpp index 37b087a..4d44323 100644 --- a/src/barchart/barchartitem.cpp +++ b/src/barchart/barchartitem.cpp @@ -22,8 +22,8 @@ #include "bar_p.h" #include "qbarset.h" #include "qbarset_p.h" -#include "qbarseries.h" -#include "qbarseries_p.h" +#include "qabstractbarseries.h" +#include "qabstractbarseries_p.h" #include "qchart.h" #include "chartpresenter_p.h" #include "chartanimator_p.h" diff --git a/src/barchart/barchartitem_p.h b/src/barchart/barchartitem_p.h index 5921b01..6318e34 100644 --- a/src/barchart/barchartitem_p.h +++ b/src/barchart/barchartitem_p.h @@ -32,7 +32,7 @@ #define BARCHARTITEM_H #include "chartitem_p.h" -#include "qbarseries.h" +#include "qabstractbarseries.h" #include #include diff --git a/src/barchart/groupedbarchartitem.cpp b/src/barchart/groupedbarchartitem.cpp index b83bb2c..5a25e6a 100644 --- a/src/barchart/groupedbarchartitem.cpp +++ b/src/barchart/groupedbarchartitem.cpp @@ -21,7 +21,7 @@ #include "groupedbarchartitem_p.h" #include "bar_p.h" #include "qbarset_p.h" -#include "qbarseries_p.h" +#include "qabstractbarseries_p.h" #include "qbarset.h" #include "qbarset_p.h" diff --git a/src/barchart/percentbarchartitem.cpp b/src/barchart/percentbarchartitem.cpp index 1d3171f..70f7e28 100644 --- a/src/barchart/percentbarchartitem.cpp +++ b/src/barchart/percentbarchartitem.cpp @@ -20,7 +20,7 @@ #include "percentbarchartitem_p.h" #include "bar_p.h" -#include "qbarseries_p.h" +#include "qabstractbarseries_p.h" #include "qbarset.h" #include "chartanimator_p.h" #include "qbarset_p.h" diff --git a/src/barchart/qbarseries.cpp b/src/barchart/qabstractbarseries.cpp similarity index 94% rename from src/barchart/qbarseries.cpp rename to src/barchart/qabstractbarseries.cpp index 5991999..46e5e69 100644 --- a/src/barchart/qbarseries.cpp +++ b/src/barchart/qabstractbarseries.cpp @@ -18,8 +18,8 @@ ** ****************************************************************************/ -#include "qbarseries.h" -#include "qbarseries_p.h" +#include "qabstractbarseries.h" +#include "qabstractbarseries_p.h" #include "qbarset.h" #include "qbarset_p.h" #include "domain_p.h" @@ -33,11 +33,11 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE /*! - \class QBarSeries + \class QAbstractBarSeries \brief Series for creating a bar chart \mainclass - QBarSeries represents a series of data shown as bars. The purpose of this class is to draw bars to + QAbstractBarSeries represents a series of data shown as bars. The purpose of this class is to draw bars to the position defined by data. Single bar is defined by QPointF, where x value is the x-coordinate of the bar and y-value is the height of the bar. The category names are ignored with this series and x-axis shows the x-values. @@ -48,7 +48,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE \sa QBarSet, QStackedBarSeries, QPercentBarSeries */ /*! - \qmlclass BarSeries QBarSeries + \qmlclass BarSeries QAbstractBarSeries \inherits AbstractSeries The following QML shows how to create a simple bar chart: @@ -61,7 +61,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE */ /*! - \property QBarSeries::barWidth + \property QAbstractBarSeries::barWidth The width of the bars of the series. The unit of \a width is the unit of x-axis. The minimum width for bars is zero and negative values are treated as zero. Setting the width to zero means that width of the bar on screen is one pixel no matter what the scale of x-axis is. Bars wider than zero are scaled with x-axis. @@ -77,7 +77,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE */ /*! - \property QBarSeries::count + \property QAbstractBarSeries::count Holds the number of sets in series. */ /*! @@ -86,7 +86,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE */ /*! - \property QBarSeries::labelsVisible + \property QAbstractBarSeries::labelsVisible Defines the visibility of the labels in series */ /*! @@ -95,7 +95,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE */ /*! - \fn void QBarSeries::clicked(int index, QBarSet *barset) + \fn void QAbstractBarSeries::clicked(int index, QBarSet *barset) The signal is emitted if the user clicks with a mouse on top of QBarSet \a barset. Clicked bar inside set is indexed by \a index */ @@ -106,7 +106,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE */ /*! - \fn void QBarSeries::hovered(bool status, QBarSet* barset) + \fn void QAbstractBarSeries::hovered(bool status, QBarSet* barset) The signal is emitted if mouse is hovered on top of series. Parameter \a barset is the pointer of barset, where hover happened. @@ -121,7 +121,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE */ /*! - \fn void QBarSeries::countChanged() + \fn void QAbstractBarSeries::countChanged() This signal is emitted when barset count has been changed, for example by append or remove. */ /*! @@ -130,13 +130,13 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE */ /*! - \fn void QBarSeries::labelsVisibleChanged() + \fn void QAbstractBarSeries::labelsVisibleChanged() This signal is emitted when labels visibility have changed. \sa isLabelsVisible(), setLabelsVisible() */ /*! - \fn void QBarSeries::barsetsAdded(QList sets) + \fn void QAbstractBarSeries::barsetsAdded(QList sets) This signal is emitted when \a sets have been added to the series. \sa append(), insert() */ @@ -146,7 +146,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE */ /*! - \fn void QBarSeries::barsetsRemoved(QList sets) + \fn void QAbstractBarSeries::barsetsRemoved(QList sets) This signal is emitted when \a sets have been removed from the series. \sa remove() */ @@ -189,8 +189,8 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE */ /*! - Constructs empty QBarSeries. - QBarSeries is QObject which is a child of a \a parent. + Constructs empty QAbstractBarSeries. + QAbstractBarSeries is QObject which is a child of a \a parent. */ QAbstractBarSeries::QAbstractBarSeries(QObject *parent) : QAbstractSeries(*new QAbstractBarSeriesPrivate(this),parent) @@ -726,7 +726,7 @@ bool QAbstractBarSeriesPrivate::insert(int index, QBarSet *set) return true; } -#include "moc_qbarseries.cpp" -#include "moc_qbarseries_p.cpp" +#include "moc_qabstractbarseries.cpp" +#include "moc_qabstractbarseries_p.cpp" QTCOMMERCIALCHART_END_NAMESPACE diff --git a/src/barchart/qbarseries.h b/src/barchart/qabstractbarseries.h similarity index 100% rename from src/barchart/qbarseries.h rename to src/barchart/qabstractbarseries.h diff --git a/src/barchart/qbarseries_p.h b/src/barchart/qabstractbarseries_p.h similarity index 95% rename from src/barchart/qbarseries_p.h rename to src/barchart/qabstractbarseries_p.h index 1e36c38..0929c18 100644 --- a/src/barchart/qbarseries_p.h +++ b/src/barchart/qabstractbarseries_p.h @@ -27,10 +27,10 @@ // // We mean it. -#ifndef QBARSERIES_P_H -#define QBARSERIES_P_H +#ifndef QABSTRACTBARSERIES_P_H +#define QABSTRACTBARSERIES_P_H -#include "qbarseries.h" +#include "qabstractbarseries.h" #include "qabstractseries_p.h" #include #include @@ -94,4 +94,4 @@ private: QTCOMMERCIALCHART_END_NAMESPACE -#endif // QBARSERIESPRIVATE_P_H +#endif // QABSTRACTBARSERIES_P_H diff --git a/src/barchart/qbarmodelmapper.cpp b/src/barchart/qbarmodelmapper.cpp index d587f12..b09aaba 100644 --- a/src/barchart/qbarmodelmapper.cpp +++ b/src/barchart/qbarmodelmapper.cpp @@ -20,7 +20,7 @@ #include "qbarmodelmapper.h" #include "qbarmodelmapper_p.h" -#include "qbarseries.h" +#include "qabstractbarseries.h" #include "qbarset.h" #include "qchart.h" #include @@ -105,7 +105,7 @@ void QBarModelMapper::setFirst(int first) } /*! - Returns the number of rows/columns of the model that are mapped as the data for QBarSeries + Returns the number of rows/columns of the model that are mapped as the data for QAbstractBarSeries Minimal and default value is: -1 (count limited by the number of rows/columns in the model) */ int QBarModelMapper::count() const @@ -115,7 +115,7 @@ int QBarModelMapper::count() const } /*! - Sets the \a count of rows/columns of the model that are mapped as the data for QBarSeries + Sets the \a count of rows/columns of the model that are mapped as the data for QAbstractBarSeries Minimal and default value is: -1 (count limited by the number of rows/columns in the model) */ void QBarModelMapper::setCount(int count) diff --git a/src/barchart/qbarset.cpp b/src/barchart/qbarset.cpp index 5c38f82..4ad3b9e 100644 --- a/src/barchart/qbarset.cpp +++ b/src/barchart/qbarset.cpp @@ -34,7 +34,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE \mainclass - \sa QBarSeries, QGroupedBarSeries, QStackedBarSeries, QPercentBarSeries + \sa QAbstractBarSeries, QGroupedBarSeries, QStackedBarSeries, QPercentBarSeries */ /*! \qmlclass BarSet QBarSet diff --git a/src/barchart/qbarset.h b/src/barchart/qbarset.h index f2e028b..d29a5d9 100644 --- a/src/barchart/qbarset.h +++ b/src/barchart/qbarset.h @@ -101,7 +101,7 @@ Q_SIGNALS: private: QScopedPointer d_ptr; Q_DISABLE_COPY(QBarSet) - friend class QBarSeries; + friend class QAbstractBarSeries; friend class BarLegendMarker; friend class BarChartItem; friend class QAbstractBarSeriesPrivate; diff --git a/src/barchart/qgroupedbarseries.cpp b/src/barchart/qgroupedbarseries.cpp index fa900e0..c951f65 100644 --- a/src/barchart/qgroupedbarseries.cpp +++ b/src/barchart/qgroupedbarseries.cpp @@ -41,7 +41,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE See the \l {GroupedbarChart Example} {grouped bar chart example} to learn how to create a grouped bar chart. \image examples_groupedbarchart.png - \sa QBarSet, QPercentBarSeries, QBarSeries, QStackedBarSeries + \sa QBarSet, QPercentBarSeries, QAbstractBarSeries, QStackedBarSeries */ /*! \qmlclass GroupedBarSeries QGroupedBarSeries diff --git a/src/barchart/qgroupedbarseries.h b/src/barchart/qgroupedbarseries.h index 1a281c4..cfa4263 100644 --- a/src/barchart/qgroupedbarseries.h +++ b/src/barchart/qgroupedbarseries.h @@ -22,7 +22,7 @@ #define GROUPEDBARSERIES_H #include -#include +#include QTCOMMERCIALCHART_BEGIN_NAMESPACE diff --git a/src/barchart/qgroupedbarseries_p.h b/src/barchart/qgroupedbarseries_p.h index 00e79d7..6b05595 100644 --- a/src/barchart/qgroupedbarseries_p.h +++ b/src/barchart/qgroupedbarseries_p.h @@ -30,7 +30,7 @@ #ifndef QGROUPEDBARSERIES_P_H #define QGROUPEDBARSERIES_P_H -#include "qbarseries_p.h" +#include "qabstractbarseries_p.h" #include "domain_p.h" QTCOMMERCIALCHART_BEGIN_NAMESPACE diff --git a/src/barchart/qhbarmodelmapper.cpp b/src/barchart/qhbarmodelmapper.cpp index 2db1f87..7aca1e5 100644 --- a/src/barchart/qhbarmodelmapper.cpp +++ b/src/barchart/qhbarmodelmapper.cpp @@ -28,7 +28,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE \mainclass Model mappers allow you to use QAbstractItemModel derived models as a data source for a chart series. - Horizontal model mapper is used to create a connection between QBarSeries and QAbstractItemModel derived model object. + Horizontal model mapper is used to create a connection between QAbstractBarSeries and QAbstractItemModel derived model object. Model mapper maintains equal size of all the BarSets. Adding/removing value from the BarSet causes the the same change in the rest of the BarSets added to the same series. NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. @@ -114,12 +114,12 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE /*! \property QHBarModelMapper::columnCount - \brief Defines the number of columns of the model that are mapped as the data for QBarSeries + \brief Defines the number of columns of the model that are mapped as the data for QAbstractBarSeries Minimal and default value is: -1 (count limited by the number of columns in the model) */ /*! \qmlproperty int HBarModelMapper::columnCount - Defines the number of columns of the model that are mapped as the data for QBarSeries. The default value is + Defines the number of columns of the model that are mapped as the data for QAbstractBarSeries. The default value is -1 (count limited by the number of columns in the model) */ diff --git a/src/barchart/qpercentbarseries.cpp b/src/barchart/qpercentbarseries.cpp index a5f5ad5..2bc58a1 100644 --- a/src/barchart/qpercentbarseries.cpp +++ b/src/barchart/qpercentbarseries.cpp @@ -41,7 +41,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE See the \l {PercentbarChart Example} {percent bar chart example} to learn how to create a percent bar chart. \image examples_percentbarchart.png - \sa QBarSet, QStackedBarSeries, QBarSeries + \sa QBarSet, QStackedBarSeries, QAbstractBarSeries */ /*! \qmlclass PercentBarSeries QPercentBarSeries diff --git a/src/barchart/qpercentbarseries.h b/src/barchart/qpercentbarseries.h index f720903..1045c7a 100644 --- a/src/barchart/qpercentbarseries.h +++ b/src/barchart/qpercentbarseries.h @@ -22,7 +22,7 @@ #define PERCENTBARSERIES_H #include -#include +#include QTCOMMERCIALCHART_BEGIN_NAMESPACE diff --git a/src/barchart/qpercentbarseries_p.h b/src/barchart/qpercentbarseries_p.h index c21ad49..88ba693 100644 --- a/src/barchart/qpercentbarseries_p.h +++ b/src/barchart/qpercentbarseries_p.h @@ -30,7 +30,7 @@ #ifndef QPERCENTBARSERIES_P_H #define QPERCENTBARSERIES_P_H -#include "qbarseries_p.h" +#include "qabstractbarseries_p.h" #include "domain_p.h" QTCOMMERCIALCHART_BEGIN_NAMESPACE diff --git a/src/barchart/qstackedbarseries.cpp b/src/barchart/qstackedbarseries.cpp index 292d09e..3020b57 100644 --- a/src/barchart/qstackedbarseries.cpp +++ b/src/barchart/qstackedbarseries.cpp @@ -41,7 +41,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE See the \l {StackedbarChart Example} {stacked bar chart example} to learn how to create a stacked bar chart. \image examples_stackedbarchart.png - \sa QBarSet, QPercentBarSeries, QBarSeries + \sa QBarSet, QPercentBarSeries, QAbstractBarSeries */ /*! diff --git a/src/barchart/qstackedbarseries.h b/src/barchart/qstackedbarseries.h index 08ee241..b5fae6c 100644 --- a/src/barchart/qstackedbarseries.h +++ b/src/barchart/qstackedbarseries.h @@ -22,7 +22,7 @@ #define STACKEDBARSERIES_H #include -#include +#include QTCOMMERCIALCHART_BEGIN_NAMESPACE diff --git a/src/barchart/qstackedbarseries_p.h b/src/barchart/qstackedbarseries_p.h index d80c22d..950d7b9 100644 --- a/src/barchart/qstackedbarseries_p.h +++ b/src/barchart/qstackedbarseries_p.h @@ -30,7 +30,7 @@ #ifndef QSTACKEDBARSERIES_P_H #define QSTACKEDBARSERIES_P_H -#include "qbarseries_p.h" +#include "qabstractbarseries_p.h" #include "domain_p.h" QTCOMMERCIALCHART_BEGIN_NAMESPACE diff --git a/src/barchart/qvbarmodelmapper.cpp b/src/barchart/qvbarmodelmapper.cpp index e9e1377..75c0f8b 100644 --- a/src/barchart/qvbarmodelmapper.cpp +++ b/src/barchart/qvbarmodelmapper.cpp @@ -28,7 +28,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE \mainclass Model mappers allow you to use QAbstractItemModel derived models as a data source for a chart series. - Vertical model mapper is used to create a connection between QBarSeries and QAbstractItemModel derived model object. + Vertical model mapper is used to create a connection between QAbstractBarSeries and QAbstractItemModel derived model object. Model mapper maintains equal size of all the BarSets. Adding/removing value from the BarSet causes the the same change in the rest of the BarSets added to the same series. NOTE: used model has to support adding/removing rows/columns and modifying the data of the cells. @@ -115,12 +115,12 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE /*! \property QVBarModelMapper::rowCount - \brief Defines the number of rows of the model that are mapped as the data for QBarSeries + \brief Defines the number of rows of the model that are mapped as the data for QAbstractBarSeries Minimal and default value is: -1 (count limited by the number of rows in the model) */ /*! \qmlproperty int VBarModelMapper::rowCount - Defines the number of rows of the model that are mapped as the data for QBarSeries. The default value is + Defines the number of rows of the model that are mapped as the data for QAbstractBarSeries. The default value is -1 (count limited by the number of rows in the model) */ diff --git a/src/barchart/stackedbarchartitem.cpp b/src/barchart/stackedbarchartitem.cpp index 292e36a..c437c54 100644 --- a/src/barchart/stackedbarchartitem.cpp +++ b/src/barchart/stackedbarchartitem.cpp @@ -21,7 +21,7 @@ #include "stackedbarchartitem_p.h" #include "bar_p.h" #include "qbarset_p.h" -#include "qbarseries_p.h" +#include "qabstractbarseries_p.h" #include "qbarset.h" #include "chartanimator_p.h" diff --git a/src/chartdataset.cpp b/src/chartdataset.cpp index bcce1a6..66f840a 100644 --- a/src/chartdataset.cpp +++ b/src/chartdataset.cpp @@ -23,7 +23,7 @@ #include "qvaluesaxis.h" #include "qvaluesaxis_p.h" #include "qabstractseries_p.h" -#include "qbarseries.h" +#include "qabstractbarseries.h" #include "qstackedbarseries.h" #include "qpercentbarseries.h" #include "qpieseries.h" diff --git a/src/charttheme.cpp b/src/charttheme.cpp index 0d61bb1..1d9b1ae 100644 --- a/src/charttheme.cpp +++ b/src/charttheme.cpp @@ -28,7 +28,7 @@ //series #include "qbarset.h" -#include "qbarseries.h" +#include "qabstractbarseries.h" #include "qstackedbarseries.h" #include "qpercentbarseries.h" #include "qlineseries.h" diff --git a/src/legend/legendmarker.cpp b/src/legend/legendmarker.cpp index 17428bb..2dfba74 100644 --- a/src/legend/legendmarker.cpp +++ b/src/legend/legendmarker.cpp @@ -22,7 +22,7 @@ #include "qxyseries.h" #include "qxyseries_p.h" #include "qlegend.h" -#include "qbarseries.h" +#include "qabstractbarseries.h" #include "qpieseries.h" #include "qpieslice.h" #include "qbarset.h" diff --git a/src/legend/qlegend.cpp b/src/legend/qlegend.cpp index c565a06..b301d89 100644 --- a/src/legend/qlegend.cpp +++ b/src/legend/qlegend.cpp @@ -30,7 +30,7 @@ #include "qareaseries.h" #include "qscatterseries.h" #include "qsplineseries.h" -#include "qbarseries.h" +#include "qabstractbarseries.h" #include "qstackedbarseries.h" #include "qpercentbarseries.h" #include "qbarset.h" diff --git a/src/legend/qlegend.h b/src/legend/qlegend.h index a774e3b..f646497 100644 --- a/src/legend/qlegend.h +++ b/src/legend/qlegend.h @@ -33,7 +33,7 @@ class LegendMarker; class QPieSlice; class QXYSeries; class QBarSet; -class QBarSeries; +class QAbstractBarSeries; class QPieSeries; class QAreaSeries; class LegendScrollButton; diff --git a/src/qabstractseries.cpp b/src/qabstractseries.cpp index f894523..e4a4391 100644 --- a/src/qabstractseries.cpp +++ b/src/qabstractseries.cpp @@ -30,7 +30,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE \mainclass Usually you use the series type specific inherited classes instead of the base class. - \sa QXYSeries, QLineSeries, QSplineSeries, QScatterSeries, QAreaSeries, QBarSeries, QStackedBarSeries, + \sa QXYSeries, QLineSeries, QSplineSeries, QScatterSeries, QAreaSeries, QAbstractBarSeries, QStackedBarSeries, QPercentBarSeries, QPieSeries */ /*! diff --git a/tests/auto/chartdataset/tst_chartdataset.cpp b/tests/auto/chartdataset/tst_chartdataset.cpp index a4a0f56..6443dae 100644 --- a/tests/auto/chartdataset/tst_chartdataset.cpp +++ b/tests/auto/chartdataset/tst_chartdataset.cpp @@ -27,7 +27,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/tests/auto/qbarseries/tst_qbarseries.cpp b/tests/auto/qbarseries/tst_qbarseries.cpp index 3ee177c..5bb1e90 100644 --- a/tests/auto/qbarseries/tst_qbarseries.cpp +++ b/tests/auto/qbarseries/tst_qbarseries.cpp @@ -19,7 +19,7 @@ ****************************************************************************/ #include -#include +#include #include #include #include diff --git a/tests/auto/qchart/tst_qchart.cpp b/tests/auto/qchart/tst_qchart.cpp index 8782bcf..14e4f1b 100644 --- a/tests/auto/qchart/tst_qchart.cpp +++ b/tests/auto/qchart/tst_qchart.cpp @@ -25,7 +25,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/tests/chartwidgettest/mainwidget.cpp b/tests/chartwidgettest/mainwidget.cpp index d2175f5..44614e2 100644 --- a/tests/chartwidgettest/mainwidget.cpp +++ b/tests/chartwidgettest/mainwidget.cpp @@ -27,7 +27,7 @@ #include #include #include -#include +#include #include #include #include