diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-10-04 15:56:36 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-10-04 15:56:36 +0200 |
commit | a7ca719c4e0d1749ccdaff6ac3eeaca66305614f (patch) | |
tree | 5ab4f8acb92521eb5948d634f7d0110dd30ad446 /Libraries/LibHTML/Dump.cpp | |
parent | 9c0e9a1a205a9ed32c9357070c9aede28f3bf741 (diff) | |
download | serenity-a7ca719c4e0d1749ccdaff6ac3eeaca66305614f.zip |
LibHTML: Rename LayoutNode::style_properties() to LayoutNode::style()
Diffstat (limited to 'Libraries/LibHTML/Dump.cpp')
-rw-r--r-- | Libraries/LibHTML/Dump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibHTML/Dump.cpp b/Libraries/LibHTML/Dump.cpp index a7fffdb3cd..8cb17f3572 100644 --- a/Libraries/LibHTML/Dump.cpp +++ b/Libraries/LibHTML/Dump.cpp @@ -114,7 +114,7 @@ void dump_tree(const LayoutNode& layout_node) } } - layout_node.style_properties().for_each_property([&](auto& key, auto& value) { + layout_node.style().for_each_property([&](auto& key, auto& value) { for (int i = 0; i < indent; ++i) dbgprintf(" "); dbgprintf(" (%s: %s)\n", key.characters(), value.to_string().characters()); |