sc/inc/markmulti.hxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 4180b2f7855479f9187cd259d57c06e9fedfb802
Author:     Michael Weghorn <m.wegh...@posteo.de>
AuthorDate: Wed Nov 17 16:56:30 2021 +0100
Commit:     Michael Weghorn <m.wegh...@posteo.de>
CommitDate: Wed Nov 17 21:22:39 2021 +0100

    sc: Drop 'typedef std::vector<ScMarkArray> MapType'
    
    Its only use is in the next line, and it's not even
    a map anymore, but a vector.
    
    Change-Id: Ib7920c420f5e3e18658f3530244097a4b1633951
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125411
    Tested-by: Michael Weghorn <m.wegh...@posteo.de>
    Reviewed-by: Michael Weghorn <m.wegh...@posteo.de>

diff --git a/sc/inc/markmulti.hxx b/sc/inc/markmulti.hxx
index c02fd5c6f0ab..0ddc6530a50c 100644
--- a/sc/inc/markmulti.hxx
+++ b/sc/inc/markmulti.hxx
@@ -31,8 +31,7 @@ class SC_DLLPUBLIC ScMultiSel
 {
 
 private:
-    typedef std::vector<ScMarkArray> MapType;
-    MapType aMultiSelContainer;
+    std::vector<ScMarkArray> aMultiSelContainer;
     ScMarkArray aRowSel;
     const ScSheetLimits& mrSheetLimits;
 

Reply via email to