doc: fix description of QFileDevice::Permission::*Other
The *Other was documented as "anyone" where it should be "others" because these permission are only applied to users except owner and users in group in UNIX like system. Change-Id: I416eb53a5b6e7ccba238a70a7a0cedd129fc83a4 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>bb10
parent
6430d1db63
commit
6295396c64
|
|
@ -89,9 +89,9 @@ void QFileDevicePrivate::setError(QFileDevice::FileError err, int errNum)
|
|||
\value ReadGroup The file is readable by the group.
|
||||
\value WriteGroup The file is writable by the group.
|
||||
\value ExeGroup The file is executable by the group.
|
||||
\value ReadOther The file is readable by anyone.
|
||||
\value WriteOther The file is writable by anyone.
|
||||
\value ExeOther The file is executable by anyone.
|
||||
\value ReadOther The file is readable by others.
|
||||
\value WriteOther The file is writable by others.
|
||||
\value ExeOther The file is executable by others.
|
||||
|
||||
\warning Because of differences in the platforms supported by Qt,
|
||||
the semantics of ReadUser, WriteUser and ExeUser are
|
||||
|
|
|
|||
Loading…
Reference in New Issue