From fc16069d1a8db45b7ecaa01c3ee1af0e904062c2 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Tue, 4 Feb 2014 21:51:57 -0500 Subject: Reimplement ScMarkData::GetMarkedRowSpans() to use flat_segment_tree directly. Change-Id: I90a1d4b3ae2e6aff9a7926b5842bc85ac172683d --- sc/inc/columnspanset.hxx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'sc/inc/columnspanset.hxx') diff --git a/sc/inc/columnspanset.hxx b/sc/inc/columnspanset.hxx index 62e96a8a41bd..7da98967ad28 100644 --- a/sc/inc/columnspanset.hxx +++ b/sc/inc/columnspanset.hxx @@ -33,6 +33,14 @@ struct RowSpan RowSpan(SCROW nRow1, SCROW nRow2); }; +struct ColRowSpan +{ + SCCOLROW mnStart; + SCCOLROW mnEnd; + + ColRowSpan(SCCOLROW nStart, SCCOLROW nEnd); +}; + /** * Structure that stores segments of boolean flags per column, and perform * custom action on those segments. -- cgit