summaryrefslogtreecommitdiff
path: root/file_hierarchy.h
diff options
context:
space:
mode:
Diffstat (limited to 'file_hierarchy.h')
-rw-r--r--file_hierarchy.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/file_hierarchy.h b/file_hierarchy.h
index 8424376c..6ea9d244 100644
--- a/file_hierarchy.h
+++ b/file_hierarchy.h
@@ -7,18 +7,16 @@
#ifndef FILEHIERARCHY_H_INCLUDED
#define FILEHIERARCHY_H_INCLUDED
-#include "shared/zstring.h"
#include <map>
#include <string>
#include <unordered_set>
#include <memory>
-#include "shared/fixed_list.h"
+#include <zen/zstring.h>
+#include <zen/fixed_list.h>
#include "structures.h"
-#include "shared/guid.h"
-#include "shared/file_id.h"
-#include "shared/int64.h"
+#include <zen/int64.h>
#include "structures.h"
-#include "library/hard_filter.h"
+#include "lib/hard_filter.h"
namespace zen
@@ -782,7 +780,7 @@ void FileSystemObject::removeObject<LEFT_SIDE>()
shortNameLeft_.clear();
removeObjectL();
- setSyncDir(SYNC_DIR_NONE); //calls notifySyncCfgChanged()
+ setSyncDir(SYNC_DIR_NONE); //calls notifySyncCfgChanged()
}
bgstack15