Index: Source/core/rendering/svg/RenderSVGText.cpp |
diff --git a/Source/core/rendering/svg/RenderSVGText.cpp b/Source/core/rendering/svg/RenderSVGText.cpp |
index 1014687ae481cd87c7ff9c3fea8f2468e7b207e5..3671c480de10a9af6993f3da360b491399e384be 100644 |
--- a/Source/core/rendering/svg/RenderSVGText.cpp |
+++ b/Source/core/rendering/svg/RenderSVGText.cpp |
@@ -488,16 +488,16 @@ void RenderSVGText::absoluteQuads(Vector<FloatQuad>& quads, bool* wasFixed) cons |
void RenderSVGText::paint(PaintInfo& paintInfo, const LayoutPoint&) |
{ |
- if (paintInfo.context->paintingDisabled()) |
+ if (paintInfo.getContext()->paintingDisabled()) |
return; |
- if (paintInfo.phase != PaintPhaseForeground |
- && paintInfo.phase != PaintPhaseSelfOutline |
- && paintInfo.phase != PaintPhaseSelection) |
+ if (paintInfo.getPhase() != PaintPhaseForeground |
+ && paintInfo.getPhase() != PaintPhaseSelfOutline |
+ && paintInfo.getPhase() != PaintPhaseSelection) |
return; |
PaintInfo blockInfo(paintInfo); |
- GraphicsContextStateSaver stateSaver(*blockInfo.context); |
+ GraphicsContextStateSaver stateSaver(*(blockInfo.getContext())); |
blockInfo.applyTransform(localToParentTransform()); |
RenderBlock::paint(blockInfo, LayoutPoint()); |
} |