Skip to content

Commit

Permalink
Doc: Qt Core: Fully qualify \variable documentation
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
toreinio committed Feb 13, 2024
1 parent 011beb4 commit fb29033
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/corelib/io/qzip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/

Expand Down

0 comments on commit fb29033

Please sign in to comment.