summaryrefslogtreecommitdiff
path: root/zen/dir_watcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/dir_watcher.h')
-rwxr-xr-xzen/dir_watcher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/dir_watcher.h b/zen/dir_watcher.h
index b4796618..f552e2b2 100755
--- a/zen/dir_watcher.h
+++ b/zen/dir_watcher.h
@@ -44,7 +44,7 @@ public:
enum ActionType
{
- ACTION_CREATE, //informal only!
+ ACTION_CREATE, //informal!
ACTION_UPDATE, //use for debugging/logging only!
ACTION_DELETE, //
};
@@ -52,7 +52,7 @@ public:
struct Entry
{
ActionType action = ACTION_CREATE;
- Zstring filePath;
+ Zstring itemPath;
};
//extract accumulated changes since last call
bgstack15