[Libreoffice-commits] core.git: sw/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Mon Jul 23 06:46:49 UTC 2018


 sw/source/core/inc/scriptinfo.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ba0e705b53c631f9fc47b5379c50fe2abb95feac
Author:     Takeshi Abe <tabe at fixedpoint.jp>
AuthorDate: Mon Jul 23 13:48:32 2018 +0900
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Mon Jul 23 08:46:28 2018 +0200

    sw: Turn SwScriptInfo's m_HiddenChg into a std::vector
    
    as it is added only at its end.
    
    Change-Id: I46731565ddf833b055ddd5dc9175638daef1e298
    Reviewed-on: https://gerrit.libreoffice.org/57837
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/sw/source/core/inc/scriptinfo.hxx b/sw/source/core/inc/scriptinfo.hxx
index 7f81a8d0e99f..1690b6d22eda 100644
--- a/sw/source/core/inc/scriptinfo.hxx
+++ b/sw/source/core/inc/scriptinfo.hxx
@@ -67,7 +67,7 @@ private:
     std::unordered_set<size_t> m_KashidaInvalid;
     std::deque<TextFrameIndex> m_NoKashidaLine;
     std::deque<TextFrameIndex> m_NoKashidaLineEnd;
-    std::deque<TextFrameIndex> m_HiddenChg;
+    std::vector<TextFrameIndex> m_HiddenChg;
     //! Records a single change in compression.
     struct CompressionChangeInfo
     {


More information about the Libreoffice-commits mailing list