summaryrefslogtreecommitdiff
path: root/library/dir_lock.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:46 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:46 +0200
commitb338e29fd3eaf700f8c8360aa0310048ba941d54 (patch)
tree122f8ef3790d12cd10275ef7453a9e8053322d78 /library/dir_lock.h
parent3.18 (diff)
downloadFreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.tar.gz
FreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.tar.bz2
FreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.zip
3.19
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