##// END OF EJS Templates
Fix some spelling errors
Jani Honkonen -
r1932:642d1d1d06a9
parent child
Show More
@@ -175,38 +175,38 QTCOMMERCIALCHART_BEGIN_NAMESPACE
175
175
176 /*!
176 /*!
177 \fn void QAbstractAxis::visibleChanged(bool visible)
177 \fn void QAbstractAxis::visibleChanged(bool visible)
178 Visiblity of the axis has changed to \a visible.
178 Visibility of the axis has changed to \a visible.
179 */
179 */
180 /*!
180 /*!
181 \qmlsignal AbstractAxis::onVisibleChanged(bool visible)
181 \qmlsignal AbstractAxis::onVisibleChanged(bool visible)
182 Visiblity of the axis has changed to \a visible.
182 Visibility of the axis has changed to \a visible.
183 */
183 */
184
184
185 /*!
185 /*!
186 \fn void QAbstractAxis::lineVisibleChanged(bool visible)
186 \fn void QAbstractAxis::lineVisibleChanged(bool visible)
187 Visiblity of the axis line has changed to \a visible.
187 Visibility of the axis line has changed to \a visible.
188 */
188 */
189 /*!
189 /*!
190 \qmlsignal AbstractAxis::onLineVisibleChanged(bool visible)
190 \qmlsignal AbstractAxis::onLineVisibleChanged(bool visible)
191 Visiblity of the axis line has changed to \a visible.
191 Visibility of the axis line has changed to \a visible.
192 */
192 */
193
193
194 /*!
194 /*!
195 \fn void QAbstractAxis::labelsVisibleChanged(bool visible)
195 \fn void QAbstractAxis::labelsVisibleChanged(bool visible)
196 Visiblity of the labels of the axis has changed to \a visible.
196 Visibility of the labels of the axis has changed to \a visible.
197 */
197 */
198 /*!
198 /*!
199 \qmlsignal AbstractAxis::onLabelsVisibleChanged(bool visible)
199 \qmlsignal AbstractAxis::onLabelsVisibleChanged(bool visible)
200 Visiblity of the labels of the axis has changed to \a visible.
200 Visibility of the labels of the axis has changed to \a visible.
201 */
201 */
202
202
203 /*!
203 /*!
204 \fn void QAbstractAxis::gridVisibleChanged(bool visible)
204 \fn void QAbstractAxis::gridVisibleChanged(bool visible)
205 Visiblity of the grid lines of the axis has changed to \a visible.
205 Visibility of the grid lines of the axis has changed to \a visible.
206 */
206 */
207 /*!
207 /*!
208 \qmlsignal AbstractAxis::onGridVisibleChanged(bool visible)
208 \qmlsignal AbstractAxis::onGridVisibleChanged(bool visible)
209 Visiblity of the grid lines of the axis has changed to \a visible.
209 Visibility of the grid lines of the axis has changed to \a visible.
210 */
210 */
211
211
212 /*!
212 /*!
@@ -179,7 +179,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
179
179
180 /*!
180 /*!
181 \qmlmethod bool AbstractBarSeries::remove(BarSet barset)
181 \qmlmethod bool AbstractBarSeries::remove(BarSet barset)
182 Removes the barset from the series. Returns true if successfull, false otherwise.
182 Removes the barset from the series. Returns true if successful, false otherwise.
183 */
183 */
184
184
185 /*!
185 /*!
@@ -270,7 +270,7 bool QAbstractBarSeries::remove(QBarSet *set)
270 NOTE: The series remains as the barset's parent object. You must set the
270 NOTE: The series remains as the barset's parent object. You must set the
271 parent object to take full ownership.
271 parent object to take full ownership.
272
272
273 Returns true if take was successfull.
273 Returns true if take was successful.
274 */
274 */
275 bool QAbstractBarSeries::take(QBarSet *set)
275 bool QAbstractBarSeries::take(QBarSet *set)
276 {
276 {
@@ -304,7 +304,7 void QBarSet::append(const QList<qreal> &values)
304 }
304 }
305
305
306 /*!
306 /*!
307 Convinience operator. Same as append, with real \a value.
307 Convenience operator. Same as append, with real \a value.
308 \sa append()
308 \sa append()
309 */
309 */
310 QBarSet& QBarSet::operator << (const qreal &value)
310 QBarSet& QBarSet::operator << (const qreal &value)
@@ -336,7 +336,7 QTCOMMERCIALCHART_BEGIN_NAMESPACE
336
336
337 /*!
337 /*!
338 \qmlmethod bool PieSeries::remove(PieSlice slice)
338 \qmlmethod bool PieSeries::remove(PieSlice slice)
339 Removes the \a slice from the pie. Returns true if the removal was successfull, false otherwise.
339 Removes the \a slice from the pie. Returns true if the removal was successful, false otherwise.
340 */
340 */
341
341
342 /*!
342 /*!
@@ -384,7 +384,7 bool QPieSeries::append(QPieSlice* slice)
384 Appends an array of \a slices to the series.
384 Appends an array of \a slices to the series.
385 Slice ownership is passed to the series.
385 Slice ownership is passed to the series.
386
386
387 Returns true if append was successfull.
387 Returns true if append was successful.
388 */
388 */
389 bool QPieSeries::append(QList<QPieSlice*> slices)
389 bool QPieSeries::append(QList<QPieSlice*> slices)
390 {
390 {
@@ -446,7 +446,7 QPieSlice* QPieSeries::append(QString label, qreal value)
446 Inserts a single \a slice to the series before the slice at \a index position.
446 Inserts a single \a slice to the series before the slice at \a index position.
447 Slice ownership is passed to the series.
447 Slice ownership is passed to the series.
448
448
449 Returns true if insert was successfull.
449 Returns true if insert was successful.
450 */
450 */
451 bool QPieSeries::insert(int index, QPieSlice* slice)
451 bool QPieSeries::insert(int index, QPieSlice* slice)
452 {
452 {
@@ -482,7 +482,7 bool QPieSeries::insert(int index, QPieSlice* slice)
482
482
483 Do not reference the pointer after this call.
483 Do not reference the pointer after this call.
484
484
485 Returns true if remove was successfull.
485 Returns true if remove was successful.
486 */
486 */
487 bool QPieSeries::remove(QPieSlice* slice)
487 bool QPieSeries::remove(QPieSlice* slice)
488 {
488 {
@@ -508,7 +508,7 bool QPieSeries::remove(QPieSlice* slice)
508 NOTE: The series remains as the slice's parent object. You must set the
508 NOTE: The series remains as the slice's parent object. You must set the
509 parent object to take full ownership.
509 parent object to take full ownership.
510
510
511 Returns true if take was successfull.
511 Returns true if take was successful.
512 */
512 */
513 bool QPieSeries::take(QPieSlice* slice)
513 bool QPieSeries::take(QPieSlice* slice)
514 {
514 {
General Comments 0
You need to be logged in to leave comments. Login now