From c3a5732a8ea5175f1032d4dcb33d39999229d1bf 2012-04-12 13:14:37 From: Jani Honkonen Date: 2012-04-12 13:14:37 Subject: [PATCH] Doc fixes --- diff --git a/doc/src/classes.qdoc b/doc/src/classes.qdoc index dbea8ff..8af6080 100644 --- a/doc/src/classes.qdoc +++ b/doc/src/classes.qdoc @@ -42,7 +42,7 @@
  • QBarSeries
  • QBarSet
  • QChart
  • -
  • QChartAxis
  • +
  • QAxis
  • QChartView
  • QLineSeries
  • QPercentBarSeries
  • diff --git a/src/axis/qaxis.cpp b/src/axis/qaxis.cpp index 20d1583..821fa18 100644 --- a/src/axis/qaxis.cpp +++ b/src/axis/qaxis.cpp @@ -25,7 +25,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE /*! \class QAxis - \brief The QChartAxis class is used for manipulating chart's axis + \brief The QAxis class is used for manipulating chart's axis and for adding optional axes to the chart. \mainclass @@ -160,7 +160,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE /*! Constructs new axis object which is a child of \a parent. Ownership is taken by - QChatView or QChart when axis added. + QChart when axis added. */ QAxis::QAxis(QObject *parent) : QObject(parent), diff --git a/src/qchart.cpp b/src/qchart.cpp index 5c307cb..afcab3e 100644 --- a/src/qchart.cpp +++ b/src/qchart.cpp @@ -59,8 +59,8 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE \brief QtCommercial chart API. QChart is a QGraphicsWidget that you can show in a QGraphicsScene. It manages the graphical - representation of different types of QChartSeries and other chart related objects like - QChartAxis and QChartLegend. If you simply want to show a chart in a layout, you can use the + representation of different types of series and other chart related objects like + QAxis and QLegend. If you simply want to show a chart in a layout, you can use the convenience class QChartView instead of QChart. \sa QChartView */ @@ -79,7 +79,7 @@ QChart::QChart(QGraphicsItem *parent, Qt::WindowFlags wFlags) : QGraphicsWidget( } /*! - Destroys the object and it's children, like QChartSeries and QChartAxis object added to it. + Destroys the object and it's children, like series and axis objects added to it. */ QChart::~QChart() { diff --git a/src/qchartview.cpp b/src/qchartview.cpp index 28466b0..acfb928 100644 --- a/src/qchartview.cpp +++ b/src/qchartview.cpp @@ -41,7 +41,7 @@ QChartView is a standalone widget that can display charts. It does not require separate QGraphicsScene to work. It manages the graphical representation of different types of - QChartSeries and other chart related objects like QChartAxis and QChartLegend. If you want to + series and other chart related objects like QAxis and QLegend. If you want to display a chart in your existing QGraphicsScene, you can use the QChart class instead. \sa QChart @@ -70,7 +70,7 @@ QChartView::QChartView(QChart *chart,QWidget *parent) : /*! - Destroys the object and it's children, like QChartSeries and QChartAxis object added to it. + Destroys the object and it's children, like series and axis objects added to it. */ QChartView::~QChartView() {