Changeset 157286 in webkit for trunk/Source/WebCore/css/CSSValue.cpp
- Timestamp:
- Oct 10, 2013, 8:37:18 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSValue.cpp
r157211 r157286 350 350 #if ENABLE(SVG) 351 351 case SVGColorClass: 352 return static_cast<const SVGColor*>(this)->customCSSText();352 return toSVGColor(this)->customCSSText(); 353 353 case SVGPaintClass: 354 return static_cast<const SVGPaint*>(this)->customCSSText();354 return toSVGPaint(this)->customCSSText(); 355 355 case WebKitCSSSVGDocumentClass: 356 356 return toWebKitCSSSVGDocumentValue(this)->customCSSText(); … … 498 498 #if ENABLE(SVG) 499 499 case SVGColorClass: 500 delete static_cast<SVGColor*>(this);500 delete toSVGColor(this); 501 501 return; 502 502 case SVGPaintClass: 503 delete static_cast<SVGPaint*>(this);503 delete toSVGPaint(this); 504 504 return; 505 505 case WebKitCSSSVGDocumentClass: … … 541 541 #if ENABLE(SVG) 542 542 case SVGColorClass: 543 return static_cast<const SVGColor*>(this)->cloneForCSSOM();543 return toSVGColor(this)->cloneForCSSOM(); 544 544 case SVGPaintClass: 545 return static_cast<const SVGPaint*>(this)->cloneForCSSOM();545 return toSVGPaint(this)->cloneForCSSOM(); 546 546 #endif 547 547 default:
Note:
See TracChangeset
for help on using the changeset viewer.