Doc: Add \a commands to FileSystemWatcher and stringutils docs

Change-Id: Ie76e2d7387df630a512413bd214461979ad2ec91
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Leena Miettinen
2023-05-25 14:17:31 +02:00
parent fbcf4a8c0f
commit f415d4c786
2 changed files with 3 additions and 3 deletions

View File

@@ -188,7 +188,7 @@ void FileSystemWatcherPrivate::autoReloadPostponed(bool postponed)
}
/*!
Adds directories to watcher 0.
Creates a file system watcher with the ID 0 and the owner \a parent.
*/
FileSystemWatcher::FileSystemWatcher(QObject *parent) :
@@ -198,7 +198,7 @@ FileSystemWatcher::FileSystemWatcher(QObject *parent) :
}
/*!
Adds directories to a watcher with the specified \a id.
Creates a file system watcher with the ID \a id and the owner \a parent.
*/
FileSystemWatcher::FileSystemWatcher(int id, QObject *parent) :

View File

@@ -458,7 +458,7 @@ QTCREATOR_UTILS_EXPORT QString normalizeNewlines(const QString &text)
/*!
Joins all the not empty string list's \a strings into a single string with each element
separated by the given separator (which can be an empty string).
separated by the given \a separator (which can be an empty string).
*/
QTCREATOR_UTILS_EXPORT QString joinStrings(const QStringList &strings, QChar separator)
{