summaryrefslogtreecommitdiff
path: root/lib/dir_exist_async.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dir_exist_async.h')
-rw-r--r--lib/dir_exist_async.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/dir_exist_async.h b/lib/dir_exist_async.h
index 40ddffc7..2ab98e94 100644
--- a/lib/dir_exist_async.h
+++ b/lib/dir_exist_async.h
@@ -9,7 +9,6 @@
#include <zen/thread.h>
#include <zen/file_handling.h>
-//#include "status_handler.h"
#include "process_callback.h"
#include <zen/file_error.h>
#include "resolve_path.h"
@@ -21,7 +20,7 @@ bool dirExistsUpdating(const Zstring& dirname, bool allowUserInteraction, Proces
{
using namespace zen;
- procCallback.reportStatus(replaceCpy(_("Searching for directory %x..."), L"%x", fmtFileName(dirname), false));
+ procCallback.reportStatus(replaceCpy(_("Searching for folder %x..."), L"%x", fmtFileName(dirname), false));
auto ft = async([=]() -> bool
{
bgstack15