summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-12-02 09:01:04 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-12-02 11:31:27 +0100
commitae63347262401cbb7010fd2939afdae90ee7b102 (patch)
tree78760d0ca50f34341b99abbb2bdcc0601cc683c6 /sc/inc
parent668b03284c4b0df56d5a000cc38dd1144ec33bbe (diff)
use initializer list
Change-Id: Ida6d710ceb4722029c9d0e07df47e621dd4a4053 Reviewed-on: https://gerrit.libreoffice.org/84192 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/markdata.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sc/inc/markdata.hxx b/sc/inc/markdata.hxx
index 5929586036d4..52fed46bb07a 100644
--- a/sc/inc/markdata.hxx
+++ b/sc/inc/markdata.hxx
@@ -50,17 +50,17 @@ private:
ScRange aMarkRange; // area
ScRange aMultiRange; // maximum area altogether
ScMultiSel aMultiSel; // multi selection
- bool bMarked:1; // rectangle marked
- bool bMultiMarked:1;
-
- bool bMarking:1; // area is being marked -> no MarkToMulti
- bool bMarkIsNeg:1; // cancel if multi selection
- ScRangeList aTopEnvelope; // list of ranges in the top envelope of the multi selection
- ScRangeList aBottomEnvelope; // list of ranges in the bottom envelope of the multi selection
- ScRangeList aLeftEnvelope; // list of ranges in the left envelope of the multi selection
- ScRangeList aRightEnvelope; // list of ranges in the right envelope of the multi selection
+ ScRangeList aTopEnvelope; // list of ranges in the top envelope of the multi selection
+ ScRangeList aBottomEnvelope; // list of ranges in the bottom envelope of the multi selection
+ ScRangeList aLeftEnvelope; // list of ranges in the left envelope of the multi selection
+ ScRangeList aRightEnvelope; // list of ranges in the right envelope of the multi selection
SCROW mnMaxRow;
SCCOL mnMaxCol;
+ bool bMarked:1; // rectangle marked
+ bool bMultiMarked:1;
+
+ bool bMarking:1; // area is being marked -> no MarkToMulti
+ bool bMarkIsNeg:1; // cancel if multi selection
public:
ScMarkData(SCROW nMaxRow, SCCOL nMaxCol);