summaryrefslogtreecommitdiff
path: root/lib/parallel_scan.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/parallel_scan.h')
-rw-r--r--lib/parallel_scan.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/parallel_scan.h b/lib/parallel_scan.h
index 836892ad..0ce0114d 100644
--- a/lib/parallel_scan.h
+++ b/lib/parallel_scan.h
@@ -56,11 +56,11 @@ public:
enum HandleError
{
- TRAV_ERROR_RETRY,
- TRAV_ERROR_IGNORE
+ ON_ERROR_RETRY,
+ ON_ERROR_IGNORE
};
- virtual HandleError reportError (const std::wstring& errorText) = 0; //may throw!
- virtual void reportStatus(const std::wstring& statusMsg, int itemTotal) = 0; //
+ virtual HandleError reportError (const std::wstring& errorText) = 0; //may throw!
+ virtual void reportStatus(const std::wstring& statusMsg, int itemsTotal) = 0; //
};
//attention: ensure directory filtering is applied later to exclude filtered directories which have been kept as parent folders
bgstack15