From 78639bfe780b0bf9986ed643ce041ffffdf0a6f2 Mon Sep 17 00:00:00 2001 From: Birunthan Mohanathas Date: Sun, 4 Sep 2011 10:36:56 +0000 Subject: [PATCH] About Measures: The Value column now shows a non-scaled value up to 5 decimal points with trailing zeros removed. --- Library/Measure.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Library/Measure.cpp b/Library/Measure.cpp index 893468f5..2bb9bd2b 100644 --- a/Library/Measure.cpp +++ b/Library/Measure.cpp @@ -758,11 +758,7 @@ void CMeasure::RemoveTrailingZero(WCHAR* str, int strLen) */ const WCHAR* CMeasure::GetStats() { - static std::wstring value; - - value = GetStringValue(AUTOSCALE_ON, 1, 1, false); - - return value.c_str(); + return GetStringValue(AUTOSCALE_OFF, 1, -1, false); } /*