| Index: sky/engine/core/rendering/line/LineWidth.h
|
| diff --git a/sky/engine/core/rendering/line/LineWidth.h b/sky/engine/core/rendering/line/LineWidth.h
|
| index 547184c5a9795aeb0797c0e1f88daa07f54ef9b7..c53c830763458cc782f37f2f32964e798a822ab8 100644
|
| --- a/sky/engine/core/rendering/line/LineWidth.h
|
| +++ b/sky/engine/core/rendering/line/LineWidth.h
|
| @@ -59,7 +59,7 @@ public:
|
| float availableWidth() const { return m_availableWidth; }
|
| float trailingWhitespaceWidth() const { return m_trailingWhitespaceWidth; }
|
|
|
| - void updateAvailableWidth(LayoutUnit minimumHeight = 0);
|
| + void updateAvailableWidth();
|
| void addUncommittedWidth(float delta) { m_uncommittedWidth += delta; }
|
| void commit();
|
| void fitBelowFloats(bool isFirstLine = false);
|
| @@ -78,7 +78,6 @@ private:
|
| float m_left;
|
| float m_right;
|
| float m_availableWidth;
|
| - bool m_isFirstLine;
|
| IndentTextOrNot m_shouldIndentText;
|
| };
|
|
|
|
|