summaryrefslogtreecommitdiff
path: root/RealtimeSync/watcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'RealtimeSync/watcher.h')
-rw-r--r--RealtimeSync/watcher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/RealtimeSync/watcher.h b/RealtimeSync/watcher.h
index c0690c33..dc579edc 100644
--- a/RealtimeSync/watcher.h
+++ b/RealtimeSync/watcher.h
@@ -9,10 +9,10 @@
#include "../shared/zstring.h"
#include <vector>
-#include "../shared/fileError.h"
+#include "../shared/file_error.h"
-namespace RealtimeSync
+namespace rts
{
const int UI_UPDATE_INTERVAL = 100; //perform ui updates not more often than necessary, 100 seems to be a good value with only a minimal performance loss
bgstack15