Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1476)

Unified Diff: Source/core/svg/SVGNumberList.cpp

Issue 19263002: Get rid of special casing for SVGNumber in the bindings generator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix style issues Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGNumberList.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGNumberList.cpp
diff --git a/Source/core/svg/SVGNumberList.cpp b/Source/core/svg/SVGNumberList.cpp
index 2b83b7071e4486dfadd701f90134fc181d28afb8..c8eb8783974b6305ee44d4a5fb656e7a632db3ad 100644
--- a/Source/core/svg/SVGNumberList.cpp
+++ b/Source/core/svg/SVGNumberList.cpp
@@ -64,7 +64,7 @@ String SVGNumberList::valueAsString() const
if (i > 0)
builder.append(' ');
- builder.append(String::number(at(i)));
+ builder.append(at(i).valueAsString());
}
return builder.toString();
« no previous file with comments | « Source/core/svg/SVGNumberList.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698