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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kamm <mail@ckamm.de>2017-05-17 11:55:42 +0300
committerckamm <mail@ckamm.de>2017-05-17 13:26:27 +0300
commitc8d0f788e00bdae125a26d9159ce9efdd6325cd2 (patch)
treead77cb515fe650984e6b76dfffe09838090d77bd /src/gui/lockwatcher.h
parentae263d60bd6d1bc0eb0c3712bab11de120b8cdd3 (diff)
Apply clang-format
Diffstat (limited to 'src/gui/lockwatcher.h')
-rw-r--r--src/gui/lockwatcher.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gui/lockwatcher.h b/src/gui/lockwatcher.h
index 981594071..ba2d8f8a7 100644
--- a/src/gui/lockwatcher.h
+++ b/src/gui/lockwatcher.h
@@ -42,19 +42,19 @@ class LockWatcher : public QObject
{
Q_OBJECT
public:
- explicit LockWatcher(QObject* parent = 0);
+ explicit LockWatcher(QObject *parent = 0);
/** Start watching a file.
*
* If the file is not locked later on, the fileUnlocked signal will be
* emitted once.
*/
- void addFile(const QString& path);
+ void addFile(const QString &path);
signals:
/** Emitted when one of the watched files is no longer
* being locked. */
- void fileUnlocked(const QString& path);
+ void fileUnlocked(const QString &path);
private slots:
void checkFiles();
@@ -63,5 +63,4 @@ private:
QSet<QString> _watchedPaths;
QTimer _timer;
};
-
}