Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Beyer <s-beyer@gmx.net>2020-06-05 01:51:32 +0300
committerKevin Ottens <ervin@ipsquad.net>2020-06-08 21:07:50 +0300
commitea16804751eec498e34a3048a295a1dfafbc1612 (patch)
treebcd399be73a45b594e61d3af259a9d0d34be1286 /src/gui/folderman.h
parentbce93b052b24c23d76a9f9b8864d71b0ad5b040e (diff)
Replace NULL by nullptr in all C++ files
We keep NULL in the pure C files in src/csync/std and test/csync. We also replace Doxygen documentation referring to "NULL" to "\c nullptr" (formatted as code). Signed-off-by: Stephan Beyer <s-beyer@gmx.net>
Diffstat (limited to 'src/gui/folderman.h')
-rw-r--r--src/gui/folderman.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/folderman.h b/src/gui/folderman.h
index d4d311bec..8d81ace0d 100644
--- a/src/gui/folderman.h
+++ b/src/gui/folderman.h
@@ -87,7 +87,7 @@ public:
*/
QStringList findFileInLocalFolders(const QString &relPath, const AccountPtr acc);
- /** Returns the folder by alias or NULL if no folder with the alias exists. */
+ /** Returns the folder by alias or \c nullptr if no folder with the alias exists. */
Folder *folder(const QString &);
/**