| Index: sky/engine/core/rendering/RenderObject.h
|
| diff --git a/sky/engine/core/rendering/RenderObject.h b/sky/engine/core/rendering/RenderObject.h
|
| index 49343f18c76266e33ae3e4669a5e0226ebf4df44..0714f3a252691d30d90ad647709c8b1b4d69a576 100644
|
| --- a/sky/engine/core/rendering/RenderObject.h
|
| +++ b/sky/engine/core/rendering/RenderObject.h
|
| @@ -308,7 +308,6 @@ public:
|
| }
|
|
|
| bool isOutOfFlowPositioned() const { return m_bitfields.isOutOfFlowPositioned(); } // absolute or fixed positioning
|
| - bool isRelPositioned() const { return m_bitfields.isRelPositioned(); } // relative positioning
|
| bool isPositioned() const { return m_bitfields.isPositioned(); }
|
|
|
| bool isText() const { return m_bitfields.isText(); }
|
| @@ -780,8 +779,6 @@ private:
|
|
|
| public:
|
| bool isOutOfFlowPositioned() const { return m_positionedState == IsOutOfFlowPositioned; }
|
| - // FIXME(sky): Remove
|
| - bool isRelPositioned() const { return false; }
|
| bool isPositioned() const { return m_positionedState != IsStaticallyPositioned; }
|
|
|
| void setPositionedState(int positionState)
|
|
|