summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJani Honkonen <jani.honkonen@digia.com>2012-08-31 15:18:18 +0300
committerJani Honkonen <jani.honkonen@digia.com>2012-08-31 15:19:07 +0300
commit642d1d1d06a9dff81f0bf6a08066f9ec6de7a414 (patch)
treeb79a1aab5873e85df4c78068b30ec59caa327ad0 /src
parentb1ba325e5970d5330e5917c8f3f81fad2b3164f3 (diff)
Fix some spelling errors
Diffstat (limited to 'src')
-rw-r--r--src/axis/qabstractaxis.cpp16
-rw-r--r--src/barchart/qabstractbarseries.cpp4
-rw-r--r--src/barchart/qbarset.cpp2
-rw-r--r--src/piechart/qpieseries.cpp10
4 files changed, 16 insertions, 16 deletions
diff --git a/src/axis/qabstractaxis.cpp b/src/axis/qabstractaxis.cpp
index 1b3fb296..c0c61b59 100644
--- a/src/axis/qabstractaxis.cpp
+++ b/src/axis/qabstractaxis.cpp
@@ -175,38 +175,38 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE
/*!
\fn void QAbstractAxis::visibleChanged(bool visible)
- Visiblity of the axis has changed to \a visible.
+ Visibility of the axis has changed to \a visible.
*/
/*!
\qmlsignal AbstractAxis::onVisibleChanged(bool visible)
- Visiblity of the axis has changed to \a visible.
+ Visibility of the axis has changed to \a visible.
*/
/*!
\fn void QAbstractAxis::lineVisibleChanged(bool visible)
- Visiblity of the axis line has changed to \a visible.
+ Visibility of the axis line has changed to \a visible.
*/
/*!
\qmlsignal AbstractAxis::onLineVisibleChanged(bool visible)
- Visiblity of the axis line has changed to \a visible.
+ Visibility of the axis line has changed to \a visible.
*/
/*!
\fn void QAbstractAxis::labelsVisibleChanged(bool visible)
- Visiblity of the labels of the axis has changed to \a visible.
+ Visibility of the labels of the axis has changed to \a visible.
*/
/*!
\qmlsignal AbstractAxis::onLabelsVisibleChanged(bool visible)
- Visiblity of the labels of the axis has changed to \a visible.
+ Visibility of the labels of the axis has changed to \a visible.
*/
/*!
\fn void QAbstractAxis::gridVisibleChanged(bool visible)
- Visiblity of the grid lines of the axis has changed to \a visible.
+ Visibility of the grid lines of the axis has changed to \a visible.
*/
/*!
\qmlsignal AbstractAxis::onGridVisibleChanged(bool visible)
- Visiblity of the grid lines of the axis has changed to \a visible.
+ Visibility of the grid lines of the axis has changed to \a visible.
*/
/*!
diff --git a/src/barchart/qabstractbarseries.cpp b/src/barchart/qabstractbarseries.cpp
index a4078789..9f44d116 100644
--- a/src/barchart/qabstractbarseries.cpp
+++ b/src/barchart/qabstractbarseries.cpp
@@ -179,7 +179,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE
/*!
\qmlmethod bool AbstractBarSeries::remove(BarSet barset)
- Removes the barset from the series. Returns true if successfull, false otherwise.
+ Removes the barset from the series. Returns true if successful, false otherwise.
*/
/*!
@@ -270,7 +270,7 @@ bool QAbstractBarSeries::remove(QBarSet *set)
NOTE: The series remains as the barset's parent object. You must set the
parent object to take full ownership.
- Returns true if take was successfull.
+ Returns true if take was successful.
*/
bool QAbstractBarSeries::take(QBarSet *set)
{
diff --git a/src/barchart/qbarset.cpp b/src/barchart/qbarset.cpp
index cc522cb2..e531c844 100644
--- a/src/barchart/qbarset.cpp
+++ b/src/barchart/qbarset.cpp
@@ -304,7 +304,7 @@ void QBarSet::append(const QList<qreal> &values)
}
/*!
- Convinience operator. Same as append, with real \a value.
+ Convenience operator. Same as append, with real \a value.
\sa append()
*/
QBarSet& QBarSet::operator << (const qreal &value)
diff --git a/src/piechart/qpieseries.cpp b/src/piechart/qpieseries.cpp
index 064e995f..90eef3eb 100644
--- a/src/piechart/qpieseries.cpp
+++ b/src/piechart/qpieseries.cpp
@@ -336,7 +336,7 @@ QTCOMMERCIALCHART_BEGIN_NAMESPACE
/*!
\qmlmethod bool PieSeries::remove(PieSlice slice)
- Removes the \a slice from the pie. Returns true if the removal was successfull, false otherwise.
+ Removes the \a slice from the pie. Returns true if the removal was successful, false otherwise.
*/
/*!
@@ -384,7 +384,7 @@ bool QPieSeries::append(QPieSlice* slice)
Appends an array of \a slices to the series.
Slice ownership is passed to the series.
- Returns true if append was successfull.
+ Returns true if append was successful.
*/
bool QPieSeries::append(QList<QPieSlice*> slices)
{
@@ -446,7 +446,7 @@ QPieSlice* QPieSeries::append(QString label, qreal value)
Inserts a single \a slice to the series before the slice at \a index position.
Slice ownership is passed to the series.
- Returns true if insert was successfull.
+ Returns true if insert was successful.
*/
bool QPieSeries::insert(int index, QPieSlice* slice)
{
@@ -482,7 +482,7 @@ bool QPieSeries::insert(int index, QPieSlice* slice)
Do not reference the pointer after this call.
- Returns true if remove was successfull.
+ Returns true if remove was successful.
*/
bool QPieSeries::remove(QPieSlice* slice)
{
@@ -508,7 +508,7 @@ bool QPieSeries::remove(QPieSlice* slice)
NOTE: The series remains as the slice's parent object. You must set the
parent object to take full ownership.
- Returns true if take was successfull.
+ Returns true if take was successful.
*/
bool QPieSeries::take(QPieSlice* slice)
{