summaryrefslogtreecommitdiff
path: root/wx+/format_unit.h
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/format_unit.h')
-rw-r--r--wx+/format_unit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/format_unit.h b/wx+/format_unit.h
index 361818cc..71501db7 100644
--- a/wx+/format_unit.h
+++ b/wx+/format_unit.h
@@ -57,7 +57,7 @@ std::wstring includeNumberSeparator(const std::wstring& number);
template <class NumberType> inline
std::wstring toStringSep(NumberType number)
{
- return ffs_Impl::includeNumberSeparator(zen::toString<std::wstring>(number));
+ return ffs_Impl::includeNumberSeparator(zen::numberTo<std::wstring>(number));
}
}
bgstack15