aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar DINH Viet Hoa <dinh.viet.hoa@gmail.com>2013-02-02 21:25:38 -0800
committerGravatar DINH Viet Hoa <dinh.viet.hoa@gmail.com>2013-02-02 21:25:38 -0800
commit706790a2067b5a449730ffc92e7f12ebaf2eab92 (patch)
tree1d1ec162256a0a800915f86cfac87f61d14a1cf4
parent2319ee53c7318b31340ef8356693a5008385180b (diff)
Fixed size formatting.
-rw-r--r--src/core/renderer/MCSizeFormatter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/renderer/MCSizeFormatter.cpp b/src/core/renderer/MCSizeFormatter.cpp
index c3795c63..f0823075 100644
--- a/src/core/renderer/MCSizeFormatter.cpp
+++ b/src/core/renderer/MCSizeFormatter.cpp
@@ -38,6 +38,6 @@ String * SizeFormatter::stringWithSize(unsigned int size)
return String::stringWithUTF8Format("%.0f %s", size / divider, unit->UTF8Characters());
}
else {
- return String::stringWithUTF8Format("%.1f %@", size / divider, unit->UTF8Characters());
+ return String::stringWithUTF8Format("%.1f %s", size / divider, unit->UTF8Characters());
}
}