summaryrefslogtreecommitdiff
path: root/wx+/format_unit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/format_unit.cpp')
-rw-r--r--wx+/format_unit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/format_unit.cpp b/wx+/format_unit.cpp
index 994a2b29..361dbc62 100644
--- a/wx+/format_unit.cpp
+++ b/wx+/format_unit.cpp
@@ -135,7 +135,7 @@ std::wstring zen::remainingTimeToShortString(double timeInSec)
}
-std::wstring zen::percentageToShortString(double fraction)
+std::wstring zen::fractionToShortString(double fraction)
{
return replaceCpy(_("%x%"), L"%x", printNumber<std::wstring>(L"%3.2f", fraction * 100.0), false);
}
bgstack15