mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:17:34 +00:00
LibWeb: Make TextNode::ChunkIterator::try_commit_chunk() const
This commit is contained in:
parent
baa6ff5649
commit
86c0961240
2 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ public:
|
|||
Optional<Chunk> next();
|
||||
|
||||
private:
|
||||
Optional<Chunk> try_commit_chunk(Utf8View::Iterator const& start, Utf8View::Iterator const& end, bool has_breaking_newline, bool must_commit = false);
|
||||
Optional<Chunk> try_commit_chunk(Utf8View::Iterator const& start, Utf8View::Iterator const& end, bool has_breaking_newline, bool must_commit = false) const;
|
||||
|
||||
const LayoutMode m_layout_mode;
|
||||
const bool m_wrap_lines;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue