Doc: Replace \p with \a and remove \param

The qdoc command for arguments/parameters is \a. It is enough to
place it somewhere in the text to make qdoc happy.

Change-Id: I164fbd63277787a68b0216ad3fbbed768b975d91
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
Leena Miettinen
2023-05-22 15:57:00 +02:00
parent f4c4ab73a1
commit ce0ab1cd27

View File

@@ -1327,11 +1327,11 @@ bool FilePath::startsWithDriveLetter() const
/*! /*!
\brief Relative path from \a parent to this. \brief Relative path from \a parent to this.
Returns a empty FilePath if this is not a child of \p parent. Returns a empty \c FilePath if this is not a child of \a parent.
\a parent is the Parent to calculate the relative path to.
That is, this never returns a path starting with "../" That is, this never returns a path starting with "../"
\param parent The Parent to calculate the relative path to.
Returns The relative path of this to \p parent if this is a child of \p parent. Returns the relative path of this to \a parent if this is a child of \a parent.
*/ */
FilePath FilePath::relativeChildPath(const FilePath &parent) const FilePath FilePath::relativeChildPath(const FilePath &parent) const
{ {
@@ -1728,16 +1728,16 @@ qint64 FilePath::bytesAvailable() const
} }
/*! /*!
\brief Checks if this is newer than \p timeStamp \brief Checks if this is newer than \a timeStamp.
\param timeStamp The time stamp to compare with The time stamp \a timeStamp to compare with.
Returns true if this is newer than \p timeStamp. Returns \c true if this is newer than \a timeStamp.
If this is a directory, the function will recursively check all files and return If this is a directory, the function will recursively check all files and return
true if one of them is newer than \a timeStamp. If this is a single file, true will \c true if one of them is newer than \a timeStamp. If this is a single file, \c true will
be returned if the file is newer than \a timeStamp. be returned if the file is newer than \a timeStamp.
Returns whether at least one file in \a filePath has a newer date than Returns whether at least one file in \a filePath has a newer date than
\p timeStamp. \a timeStamp.
*/ */
bool FilePath::isNewerThan(const QDateTime &timeStamp) const bool FilePath::isNewerThan(const QDateTime &timeStamp) const
{ {
@@ -1907,7 +1907,7 @@ QString FilePath::shortNativePath() const
} }
/*! /*!
\brief Checks whether the path is relative \brief Checks whether the path is relative.
Returns true if the path is relative. Returns true if the path is relative.
*/ */
@@ -1924,11 +1924,9 @@ bool FilePath::isRelativePath() const
} }
/*! /*!
\brief Appends the tail to this, if the tail is a relative path. \brief Appends the \a tail to this, if the tail is a relative path.
\param tail The tail to append. Returns the tail if the tail is absolute, otherwise this + tail.
Returns tail if tail is absolute, otherwise this + tail.
*/ */
FilePath FilePath::resolvePath(const FilePath &tail) const FilePath FilePath::resolvePath(const FilePath &tail) const
{ {
@@ -1940,11 +1938,9 @@ FilePath FilePath::resolvePath(const FilePath &tail) const
} }
/*! /*!
\brief Appends the tail to this, if the tail is a relative path. \brief Appends the \a tail to this, if the tail is a relative path.
\param tail The tail to append. Returns the tail if the tail is absolute, otherwise this + tail.
Returns tail if tail is absolute, otherwise this + tail.
*/ */
FilePath FilePath::resolvePath(const QString &tail) const FilePath FilePath::resolvePath(const QString &tail) const
{ {
@@ -1962,7 +1958,7 @@ expected_str<FilePath> FilePath::localSource() const
} }
/*! /*!
\brief Cleans path part similar to QDir::cleanPath() \brief Cleans path part similar to \c QDir::cleanPath().
\list \list
\li directory separators normalized (that is, platform-native \li directory separators normalized (that is, platform-native