summaryrefslogtreecommitdiff
path: root/lib/dir_lock.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dir_lock.h')
-rw-r--r--lib/dir_lock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dir_lock.h b/lib/dir_lock.h
index 85b9058e..ec2a431a 100644
--- a/lib/dir_lock.h
+++ b/lib/dir_lock.h
@@ -17,7 +17,7 @@ struct DirLockCallback //while waiting for the lock
{
virtual ~DirLockCallback() {}
virtual void requestUiRefresh() = 0; //allowed to throw exceptions
- virtual void reportInfo(const std::wstring& text) = 0;
+ virtual void reportStatus(const std::wstring& text) = 0;
};
/*
bgstack15