Index: Source/platform/text/PlatformLocale.cpp |
diff --git a/Source/platform/text/PlatformLocale.cpp b/Source/platform/text/PlatformLocale.cpp |
index 60acf5a59ba7e7e0b5abb69a3a4ca862ac4f605e..66ff42e48373eb0e17f4a1a191aef3598c117e39 100644 |
--- a/Source/platform/text/PlatformLocale.cpp |
+++ b/Source/platform/text/PlatformLocale.cpp |
@@ -284,6 +284,8 @@ String Locale::convertToLocalizedNumber(const String& input) |
case '.': |
builder.append(m_decimalSymbols[DecimalSeparatorIndex]); |
break; |
+ case ' ': |
tkent
2014/04/14 00:47:37
This change is unnecessary. The input string must
|
+ break; |
default: |
ASSERT_NOT_REACHED(); |
} |