##// END OF EJS Templates
Minor qpieseries doc updates.
Jani Honkonen -
r933:7957ef91e645
parent child
Show More
@@ -296,7 +296,7 QPieSeries::QPieSeries(QObject *parent) :
296 }
296 }
297
297
298 /*!
298 /*!
299 Destroys the object. Note that adding series to QChart transfers the ownership to the chart.
299 Destroys the series and its slices.
300 */
300 */
301 QPieSeries::~QPieSeries()
301 QPieSeries::~QPieSeries()
302 {
302 {
@@ -322,7 +322,7 void QPieSeries::replace(QList<QPieSlice*> slices)
322 }
322 }
323
323
324 /*!
324 /*!
325 Adds an array of \a slices to the series.
325 Appends an array of \a slices to the series.
326 Slice ownership is passed to the series.
326 Slice ownership is passed to the series.
327 */
327 */
328 void QPieSeries::append(QList<QPieSlice*> slices)
328 void QPieSeries::append(QList<QPieSlice*> slices)
@@ -347,7 +347,7 void QPieSeries::append(QList<QPieSlice*> slices)
347 }
347 }
348
348
349 /*!
349 /*!
350 Adds a single \a slice to the series.
350 Appends a single \a slice to the series.
351 Slice ownership is passed to the series.
351 Slice ownership is passed to the series.
352 */
352 */
353 void QPieSeries::append(QPieSlice* slice)
353 void QPieSeries::append(QPieSlice* slice)
@@ -356,7 +356,7 void QPieSeries::append(QPieSlice* slice)
356 }
356 }
357
357
358 /*!
358 /*!
359 Adds a single \a slice to the series and returns a reference to the series.
359 Appends a single \a slice to the series and returns a reference to the series.
360 Slice ownership is passed to the series.
360 Slice ownership is passed to the series.
361 */
361 */
362 QPieSeries& QPieSeries::operator << (QPieSlice* slice)
362 QPieSeries& QPieSeries::operator << (QPieSlice* slice)
@@ -440,7 +440,7 void QPieSeries::clear()
440 }
440 }
441
441
442 /*!
442 /*!
443 Counts the number of the slices in this series.
443 returns the number of the slices in this series.
444 */
444 */
445 int QPieSeries::count() const
445 int QPieSeries::count() const
446 {
446 {
General Comments 0
You need to be logged in to leave comments. Login now