diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:13:35 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:13:35 +0200 |
commit | 801e8b43b13f1cb67d9e9ba4aae5acb274ccdfbc (patch) | |
tree | 473f4a9ea5016f146fb2ff6085807bc91a84c84e /library/dir_exist_async.h | |
parent | 3.20 (diff) | |
download | FreeFileSync-801e8b43b13f1cb67d9e9ba4aae5acb274ccdfbc.tar.gz FreeFileSync-801e8b43b13f1cb67d9e9ba4aae5acb274ccdfbc.tar.bz2 FreeFileSync-801e8b43b13f1cb67d9e9ba4aae5acb274ccdfbc.zip |
3.21
Diffstat (limited to 'library/dir_exist_async.h')
-rw-r--r-- | library/dir_exist_async.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/library/dir_exist_async.h b/library/dir_exist_async.h index 661c70d6..60fa4582 100644 --- a/library/dir_exist_async.h +++ b/library/dir_exist_async.h @@ -21,9 +21,7 @@ bool dirExistsUpdating(const Zstring& dirname, ProcessCallback& procCallback) { using namespace util; - std::wstring statusText = _("Searching for directory %x..."); - replace(statusText, L"%x", std::wstring(L"\"") + dirname + L"\"", false); - procCallback.reportInfo(statusText); + //do NOT include info messages here! this method is used by synchronization also, so avoid flooding! auto ft = dirExistsAsync(dirname); while (!ft.timed_wait(boost::posix_time::milliseconds(UI_UPDATE_INTERVAL))) |