diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2017-02-10 22:48:41 -0500 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2017-02-16 16:28:12 +0000 |
commit | 3b24499324a149626a6b57ea8ec32bf2a5f84152 (patch) | |
tree | ca8bba31157d3fa84033cafb6d5710e7ead0b37b | |
parent | 2e129c67dd220ca866c8e8a451d1a20b528ab6f9 (diff) |
tdf#95306: Be sure to specify the entire range.
Especially in presence of multiple disjointed selections.
Change-Id: I8e7779824109c30e69fd43a2448ae900beaf28d3
Reviewed-on: https://gerrit.libreoffice.org/34140
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Kohei Yoshida <libreoffice@kohei.us>
(cherry picked from commit 6d450aad0a8f82ee0320ffc3e76eefb43c16addb)
Reviewed-on: https://gerrit.libreoffice.org/34143
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
-rw-r--r-- | sc/source/ui/view/viewfunc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/view/viewfunc.cxx b/sc/source/ui/view/viewfunc.cxx index ef317d7389ae..0228541fe286 100644 --- a/sc/source/ui/view/viewfunc.cxx +++ b/sc/source/ui/view/viewfunc.cxx @@ -1871,8 +1871,8 @@ void ScViewFunc::SetWidthOrHeight( return; } - SCCOLROW nStart = rRanges[0].mnStart; - SCCOLROW nEnd = rRanges[0].mnEnd; + SCCOLROW nStart = rRanges.front().mnStart; + SCCOLROW nEnd = rRanges.back().mnEnd; bool bFormula = false; if ( eMode == SC_SIZE_OPTIMAL ) |