summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@qt.io>2024-02-12 11:55:47 +0000
committerTopi Reinio <topi.reinio@qt.io>2024-02-13 08:14:07 +0000
commitfb29033565408e0b5dcba013c80cb1a145ab3408 (patch)
tree48a452ae23676fff83f9d21f5d179013ea9fe110
parent011beb4506a5a963c662ec8081643c507579c64a (diff)
Doc: Qt Core: Fully qualify \variable documentation
Upcoming changes to QDoc require API entities to be fully qualified; previously, QDoc maintained a list of 'open namespaces' that were part of matching the documented entity with its declaration, but that concept does not work for parallelized parsing where the order of processing can be arbitrary. Change-Id: If8f84df4f429ef92c861d6094e58448bd658a540 Reviewed-by: Luca Di Sera <luca.disera@qt.io>
-rw-r--r--src/corelib/io/qzip.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/corelib/io/qzip.cpp b/src/corelib/io/qzip.cpp
index d4976691c9..173563ec29 100644
--- a/src/corelib/io/qzip.cpp
+++ b/src/corelib/io/qzip.cpp
@@ -730,37 +730,37 @@ void QZipWriterPrivate::addEntry(EntryType type, const QString &fileName, const
*/
/*!
- \variable FileInfo::filePath
+ \variable QZipReader::FileInfo::filePath
The full filepath inside the archive.
*/
/*!
- \variable FileInfo::isDir
+ \variable QZipReader::FileInfo::isDir
A boolean type indicating if the entry is a directory.
*/
/*!
- \variable FileInfo::isFile
+ \variable QZipReader::FileInfo::isFile
A boolean type, if it is one this entry is a file.
*/
/*!
- \variable FileInfo::isSymLink
+ \variable QZipReader::FileInfo::isSymLink
A boolean type, if it is one this entry is symbolic link.
*/
/*!
- \variable FileInfo::permissions
+ \variable QZipReader::FileInfo::permissions
A list of flags for the permissions of this entry.
*/
/*!
- \variable FileInfo::crc
+ \variable QZipReader::FileInfo::crc
The calculated checksum as a crc type.
*/
/*!
- \variable FileInfo::size
+ \variable QZipReader::FileInfo::size
The total size of the unpacked content.
*/