| Index: sky/engine/core/rendering/RenderText.h
|
| diff --git a/sky/engine/core/rendering/RenderText.h b/sky/engine/core/rendering/RenderText.h
|
| index adb8db9644336af55d766448c1b1049d9d0a90af..359e6aa6aed5daa9a46885a53bfad518e528320d 100644
|
| --- a/sky/engine/core/rendering/RenderText.h
|
| +++ b/sky/engine/core/rendering/RenderText.h
|
| @@ -60,13 +60,13 @@ public:
|
| void dirtyLineBoxes(bool fullLayout);
|
|
|
| virtual void absoluteRects(Vector<IntRect>&, const LayoutPoint& accumulatedOffset) const override final;
|
| - void absoluteRectsForRange(Vector<IntRect>&, unsigned startOffset = 0, unsigned endOffset = INT_MAX, bool useSelectionHeight = false, bool* wasFixed = 0);
|
| + void absoluteRectsForRange(Vector<IntRect>&, unsigned startOffset = 0, unsigned endOffset = INT_MAX, bool useSelectionHeight = false);
|
|
|
| - virtual void absoluteQuads(Vector<FloatQuad>&, bool* wasFixed) const override final;
|
| - void absoluteQuadsForRange(Vector<FloatQuad>&, unsigned startOffset = 0, unsigned endOffset = INT_MAX, bool useSelectionHeight = false, bool* wasFixed = 0);
|
| + virtual void absoluteQuads(Vector<FloatQuad>&) const override final;
|
| + void absoluteQuadsForRange(Vector<FloatQuad>&, unsigned startOffset = 0, unsigned endOffset = INT_MAX, bool useSelectionHeight = false);
|
|
|
| enum ClippingOption { NoClipping, ClipToEllipsis };
|
| - void absoluteQuads(Vector<FloatQuad>&, bool* wasFixed = 0, ClippingOption = NoClipping) const;
|
| + void absoluteQuads(Vector<FloatQuad>&, ClippingOption = NoClipping) const;
|
|
|
| virtual PositionWithAffinity positionForPoint(const LayoutPoint&) override;
|
|
|
|
|