summaryrefslogtreecommitdiff
path: root/library/lock_holder.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/lock_holder.h')
-rw-r--r--library/lock_holder.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/library/lock_holder.h b/library/lock_holder.h
index 65471d5f..b72b12c1 100644
--- a/library/lock_holder.h
+++ b/library/lock_holder.h
@@ -20,10 +20,6 @@ public:
if (dirnameFmt.empty())
return;
- std::wstring statusText = _("Searching for directory %x...");
- replace(statusText, L"%x", std::wstring(L"\"") + dirnameFmt + L"\"", false);
- procCallback.reportInfo(statusText);
-
if (!dirExistsUpdating(dirnameFmt, procCallback))
return;
@@ -35,7 +31,7 @@ public:
public:
WaitOnLockHandler(ProcessCallback& pc) : pc_(pc) {}
virtual void requestUiRefresh() { pc_.requestUiRefresh(); } //allowed to throw exceptions
- virtual void reportInfo(const std::wstring& text) { pc_.reportInfo(text); }
+ virtual void reportInfo(const std::wstring& text) { pc_.reportStatus(text); }
private:
ProcessCallback& pc_;
} callback(procCallback);
bgstack15