diff options
author | Andreas Kling <kling@serenityos.org> | 2020-12-03 19:29:50 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-12-03 21:45:55 +0100 |
commit | c189897e29bfa65bdaaac08c8a2035e91d612216 (patch) | |
tree | d8ae31365530d34b873c65fb7be36a68c9b0594d /Libraries | |
parent | d59ec3ab85c945215afb4c032be4578fd5275c45 (diff) | |
download | serenity-c189897e29bfa65bdaaac08c8a2035e91d612216.zip |
LibWeb: Fix wrong forward declaration of LineBox & LineBoxFragment
Diffstat (limited to 'Libraries')
-rw-r--r-- | Libraries/LibWeb/Forward.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Libraries/LibWeb/Forward.h b/Libraries/LibWeb/Forward.h index 7dd98c79e6..9f8a5bff6e 100644 --- a/Libraries/LibWeb/Forward.h +++ b/Libraries/LibWeb/Forward.h @@ -154,9 +154,11 @@ class BlockFormattingContext; class Box; class ButtonBox; class CheckBox; -class InitialContainingBlockBox; class FormattingContext; +class InitialContainingBlockBox; class InlineFormattingContext; +class LineBox; +class LineBoxFragment; class Node; class NodeWithStyle; class ReplacedBox; @@ -167,8 +169,6 @@ class EventHandler; class Frame; class FrameLoader; class InProcessWebView; -class LineBox; -class LineBoxFragment; class LoadRequest; class Origin; class OutOfProcessWebView; |