Review of documentation.
Documentation has been updated to reflect changes in Qt5. Change-Id: I3d54d1875962bd27c43bb360ae7b3fda0b7702ba Reviewed-by: Andreas Holzammer <andreas.holzammer@kdab.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
ff1a514913
commit
a895359c19
@ -390,7 +390,7 @@ void QBitArray::fill(bool value, int begin, int end)
|
||||
\overload
|
||||
*/
|
||||
|
||||
/*! \fn bool QBitArray::operator[](uint i)
|
||||
/*! \fn QBitRef QBitArray::operator[](uint i)
|
||||
|
||||
\overload
|
||||
*/
|
||||
@ -418,6 +418,12 @@ void QBitArray::fill(bool value, int begin, int end)
|
||||
this bit array.
|
||||
*/
|
||||
|
||||
/*! \fn QBitArray &QBitArray::operator=(QBitArray &&other)
|
||||
|
||||
Moves \a other to this bit array and returns a reference to
|
||||
this bit array.
|
||||
*/
|
||||
|
||||
/*! \fn void QBitArray::swap(QBitArray &other)
|
||||
\since 4.8
|
||||
|
||||
|
@ -99,8 +99,8 @@ public:
|
||||
QBitArray& operator^=(const QBitArray &);
|
||||
QBitArray operator~() const;
|
||||
|
||||
inline bool operator==(const QBitArray& a) const { return d == a.d; }
|
||||
inline bool operator!=(const QBitArray& a) const { return d != a.d; }
|
||||
inline bool operator==(const QBitArray& other) const { return d == other.d; }
|
||||
inline bool operator!=(const QBitArray& other) const { return d != other.d; }
|
||||
|
||||
inline bool fill(bool val, int size = -1);
|
||||
void fill(bool val, int first, int last);
|
||||
|
Loading…
Reference in New Issue
Block a user