diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2021-11-17 16:56:30 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2021-11-17 21:22:39 +0100 |
commit | 4180b2f7855479f9187cd259d57c06e9fedfb802 (patch) | |
tree | f381b70f90e7b59fe2c3301ada403351ebfd375f /sc/inc | |
parent | 4c3c94704704e5090c0382476251caee7a904454 (diff) |
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.weghorn@posteo.de>
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/markmulti.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
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; |