Change wxRichTextParagraph::m_cachedLines data type to vector

Now wxRichTextParagraph::m_cachedLines is stored as a wxVector instead
of a wxList.

See #2523, closes #2577.
This commit is contained in:
Mehmet Soyturk 2021-11-02 10:15:13 +03:00 committed by Vadim Zeitlin
parent 151a9c5a63
commit 8aa5c55f61
5 changed files with 93 additions and 96 deletions

View file

@ -139,6 +139,9 @@ Changes in behaviour not resulting in compilation errors
distinguishing them from the drive letters, even for single letter network
share name.
- wxRichTextParagraph::GetLines() now returns const wxVector<wxRichTextLine*>&
instead of wxList<wxRichTextLine*>&.
Changes in behaviour which may result in build errors
-----------------------------------------------------