QByteArray::operator[] no longer resizes

Fix the documentation

Change-Id: I328d9dd9255f15225992502dc35ae8877fe206a1
Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
This commit is contained in:
Albert Astals Cid 2020-06-26 16:18:49 +02:00
parent 943340222e
commit ee6aadcff4

View File

@ -1363,9 +1363,8 @@ QByteArray &QByteArray::operator=(const char *str)
Returns the byte at index position \a i as a modifiable reference.
If an assignment is made beyond the end of the byte array, the
array is extended with resize() before the assignment takes
place.
\a i must be a valid index position in the byte array (i.e., 0 <=
\a i < size()).
Example:
\snippet code/src_corelib_text_qbytearray.cpp 9