From 9fc8bd00967ae89c2174d10c2f38d654edc99a1d Mon Sep 17 00:00:00 2001 From: Ahmad Samir Date: Tue, 23 Jan 2024 21:36:52 +0200 Subject: [PATCH] QFileInfo: de-duplicate docs wrt. QResource paths Pick-to: 6.7 6.6 6.5 Change-Id: I8a99a3aacc68bf43da21e1101c838154d06aef6e Reviewed-by: Leena Miettinen Reviewed-by: Thiago Macieira --- src/corelib/io/qfileinfo.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/corelib/io/qfileinfo.cpp b/src/corelib/io/qfileinfo.cpp index 8d252157f9b..19adede02d7 100644 --- a/src/corelib/io/qfileinfo.cpp +++ b/src/corelib/io/qfileinfo.cpp @@ -215,8 +215,10 @@ QDateTime &QFileInfoPrivate::getFileTime(QAbstractFileEngine::FileTime request) path. You can call the function makeAbsolute() to convert a relative QFileInfo's path to an absolute path. +//! [qresource-virtual-fs-colon] \note Paths starting with a colon (\e{:}) are always considered absolute, as they denote a QResource. +//! [qresource-virtual-fs-colon] The file that the QFileInfo works on is set in the constructor or later with setFile(). Use exists() to see if the file exists and @@ -644,8 +646,7 @@ QString QFileInfo::path() const Returns \c true if the file path is absolute, otherwise returns \c false (i.e. the path is relative). - \note Paths starting with a colon (\e{:}) are always considered absolute, as - they denote a QResource. + \include qfileinfo.cpp qresource-virtual-fs-colon \sa isRelative() */ @@ -655,8 +656,7 @@ QString QFileInfo::path() const false (i.e. the path is absolute). (E.g. under Unix a path is absolute if it begins with a "/"). - \note Paths starting with a colon (\e{:}) are always considered absolute, - as they denote a QResource. + \include qfileinfo.cpp qresource-virtual-fs-colon \sa isAbsolute() */