summaryrefslogtreecommitdiff
path: root/library/dir_lock.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/dir_lock.h')
-rw-r--r--library/dir_lock.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/library/dir_lock.h b/library/dir_lock.h
index 5d51d698..f4720e61 100644
--- a/library/dir_lock.h
+++ b/library/dir_lock.h
@@ -1,7 +1,6 @@
#ifndef DIR_LOCK_H_INCLUDED
#define DIR_LOCK_H_INCLUDED
-#include "../shared/zstring.h"
#include "../shared/file_error.h"
#include <memory>
@@ -10,7 +9,7 @@ struct DirLockCallback //while waiting for the lock
{
virtual ~DirLockCallback() {}
virtual void requestUiRefresh() = 0; //allowed to throw exceptions
- virtual void reportInfo(const Zstring& text) = 0;
+ virtual void reportInfo(const std::wstring& text) = 0;
};
/*
bgstack15