From e70371f408540718eebb6750582dee2182a0f7b8 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Tue, 22 May 2018 10:40:45 +0200 Subject: [PATCH] FileSystem: Fix bad indentation --- src/libsync/filesystem.h | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/src/libsync/filesystem.h b/src/libsync/filesystem.h index 302a1790a..e313c1d89 100644 --- a/src/libsync/filesystem.h +++ b/src/libsync/filesystem.h @@ -38,42 +38,42 @@ namespace OCC { namespace FileSystem { /** - * @brief compare two files with given filename and return true if they have the same content - */ + * @brief compare two files with given filename and return true if they have the same content + */ bool fileEquals(const QString &fn1, const QString &fn2); /** - * @brief Get the mtime for a filepath - * - * Use this over QFileInfo::lastModified() to avoid timezone related bugs. See - * owncloud/core#9781 for details. - */ + * @brief Get the mtime for a filepath + * + * Use this over QFileInfo::lastModified() to avoid timezone related bugs. See + * owncloud/core#9781 for details. + */ time_t OWNCLOUDSYNC_EXPORT getModTime(const QString &filename); bool OWNCLOUDSYNC_EXPORT setModTime(const QString &filename, time_t modTime); /** - * @brief Get the size for a file - * - * Use this over QFileInfo::size() to avoid bugs with lnk files on Windows. - * See https://bugreports.qt.io/browse/QTBUG-24831. - */ + * @brief Get the size for a file + * + * Use this over QFileInfo::size() to avoid bugs with lnk files on Windows. + * See https://bugreports.qt.io/browse/QTBUG-24831. + */ qint64 OWNCLOUDSYNC_EXPORT getSize(const QString &filename); /** - * @brief Check if \a fileName has changed given previous size and mtime - * - * Nonexisting files are covered through mtime: they have an mtime of -1. - * - * @return true if the file's mtime or size are not what is expected. - */ + * @brief Check if \a fileName has changed given previous size and mtime + * + * Nonexisting files are covered through mtime: they have an mtime of -1. + * + * @return true if the file's mtime or size are not what is expected. + */ bool OWNCLOUDSYNC_EXPORT fileChanged(const QString &fileName, qint64 previousSize, time_t previousMtime); /** - * @brief Like !fileChanged() but with verbose logging if the file *did* change. - */ + * @brief Like !fileChanged() but with verbose logging if the file *did* change. + */ bool verifyFileUnchanged(const QString &fileName, qint64 previousSize, time_t previousMtime);