windir.cpp, winrtdir.cpp: string_format calls need qualification now

This commit is contained in:
AJR 2021-01-02 16:40:04 -05:00
parent 87d8079cac
commit 11c30f91ac
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ bool win_directory::open_impl(std::string const &dirname)
assert(m_find == INVALID_HANDLE_VALUE);
// append \*.* to the directory name
std::string dirfilter = string_format("%s\\*.*", dirname);
std::string dirfilter = util::string_format("%s\\*.*", dirname);
// convert the path to TCHARs
osd::text::tstring t_dirfilter = osd::text::to_tstring(dirfilter);

View File

@ -108,7 +108,7 @@ bool win_directory::open_impl(std::string const &dirname)
assert(m_find == INVALID_HANDLE_VALUE);
// append \*.* to the directory name
std::string dirfilter = string_format("%s\\*.*", dirname);
std::string dirfilter = util::string_format("%s\\*.*", dirname);
// convert the path to TCHARs
osd::text::tstring t_dirfilter = osd::text::to_tstring(dirfilter);