summaryrefslogtreecommitdiff
path: root/zen/format_unit.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:26:50 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:26:50 +0200
commit669df123648aaa6aeccc70206b5417bc48b4e9ae (patch)
tree463c107a8d6405020bb304f7a7253e6b64afeee0 /zen/format_unit.h
parent5.18 (diff)
downloadFreeFileSync-669df123648aaa6aeccc70206b5417bc48b4e9ae.tar.gz
FreeFileSync-669df123648aaa6aeccc70206b5417bc48b4e9ae.tar.bz2
FreeFileSync-669df123648aaa6aeccc70206b5417bc48b4e9ae.zip
5.19
Diffstat (limited to 'zen/format_unit.h')
-rw-r--r--zen/format_unit.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/zen/format_unit.h b/zen/format_unit.h
index 86477999..e3e2d107 100644
--- a/zen/format_unit.h
+++ b/zen/format_unit.h
@@ -16,19 +16,12 @@ namespace zen
std::wstring filesizeToShortString(Int64 filesize);
std::wstring remainingTimeToString(double timeInSec);
std::wstring fractionToString(double fraction); //within [0, 1]
-
-template <class NumberType>
-std::wstring toGuiString(NumberType number); //format integer number including thousands separator
-
std::wstring utcToLocalTimeString(Int64 utcTime); //like Windows Explorer would...
+std::wstring formatThreeDigitPrecision(double value); //= *at least* three digits
-
-
-
-
-
-
+template <class NumberType>
+std::wstring toGuiString(NumberType number); //format integer number including thousands separator
bgstack15