sw/inc/accmap.hxx |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 1afa29d1e526c4e10318a4b05767fa4333786cd4
Author:     Michael Weghorn <m.wegh...@posteo.de>
AuthorDate: Fri Feb 18 08:55:08 2022 +0100
Commit:     Michael Weghorn <m.wegh...@posteo.de>
CommitDate: Fri Feb 18 18:51:06 2022 +0100

    sw a11y: Make these SwAccessibleMap members private
    
    And drop the 'SET_PARA' typedef which was no longer
    referring to a set by now anyway.
    
    Change-Id: I303b335cd3276562ed02e668a912895f78dc506c
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130140
    Tested-by: Jenkins
    Reviewed-by: Michael Weghorn <m.wegh...@posteo.de>

diff --git a/sw/inc/accmap.hxx b/sw/inc/accmap.hxx
index 5b32fe204c57..0090d7837876 100644
--- a/sw/inc/accmap.hxx
+++ b/sw/inc/accmap.hxx
@@ -96,6 +96,11 @@ class SwAccessibleMap final : public 
::accessibility::IAccessibleViewForwarder,
     SwShapeList_Impl mvShapes;
     std::unique_ptr<SwAccessibleEventList_Impl> mpEvents;
     std::unique_ptr<SwAccessibleEventMap_Impl> mpEventMap;
+
+    // Para Container for InvalidateCursorPosition
+    o3tl::sorted_vector<SwAccessibleParagraph*> m_setParaAdd;
+    o3tl::sorted_vector<SwAccessibleParagraph*> m_setParaRemove;
+
     // #i27301 data structure to keep information about
     // accessible paragraph, which have a selection.
     std::unique_ptr<SwAccessibleSelectedParas_Impl> mpSelectedParas;
@@ -302,11 +307,6 @@ private:
                      MapMode&     _orMapMode ) const;
 public:
     virtual bool IsDocumentSelAll() override;
-
-    //Para Container for InvalidateCursorPosition
-    typedef o3tl::sorted_vector< SwAccessibleParagraph* >  SET_PARA;
-    SET_PARA m_setParaAdd;
-    SET_PARA m_setParaRemove;
 };
 #endif
 

Reply via email to