aboutsummaryrefslogtreecommitdiff
path: root/launcher/WatchLock.h
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/WatchLock.h')
-rw-r--r--launcher/WatchLock.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/launcher/WatchLock.h b/launcher/WatchLock.h
index 3e08b413..ad74f251 100644
--- a/launcher/WatchLock.h
+++ b/launcher/WatchLock.h
@@ -1,20 +1,15 @@
#pragma once
-#include <QString>
#include <QFileSystemWatcher>
+#include <QString>
-struct WatchLock
-{
- WatchLock(QFileSystemWatcher * watcher, const QString& directory)
- : m_watcher(watcher), m_directory(directory)
+struct WatchLock {
+ WatchLock(QFileSystemWatcher* watcher, const QString& directory) : m_watcher(watcher), m_directory(directory)
{
m_watcher->removePath(m_directory);
}
- ~WatchLock()
- {
- m_watcher->addPath(m_directory);
- }
- QFileSystemWatcher * m_watcher;
+ ~WatchLock() { m_watcher->addPath(m_directory); }
+ QFileSystemWatcher* m_watcher;
QString m_directory;
};