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

Unified Diff: Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.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/core.gypi ('k') | Source/core/svg/SVGAnimatedNumberList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp
diff --git a/Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp b/Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp
index e9ea97fa381b728bbea4b393a5973e5bf58fcf48..9ea128143b5193c112dd9c3b363f91f14455ee2d 100644
--- a/Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp
+++ b/Source/core/rendering/svg/SVGTextLayoutAttributesBuilder.cpp
@@ -172,7 +172,7 @@ static inline void updateCharacterData(unsigned i, float& lastRotation, SVGChara
if (dyList)
data.dy = dyList->at(i).value(lengthContext);
if (rotateList) {
- data.rotate = rotateList->at(i);
+ data.rotate = rotateList->at(i).value();
lastRotation = data.rotate;
}
}
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/svg/SVGAnimatedNumberList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698