From bc20c6d0f397c0c1aef6ef7d6f750c2f81af8db6 Mon Sep 17 00:00:00 2001 From: Dennis Francis Date: Sat, 6 Feb 2016 03:12:20 +0530 Subject: Refactor ScMarkData for tdf#50916 Made the container for storing multimarks dynamic. Also let the full row marks to be stored in a dedicated ScMarkArray object rather than in the multimarks container. Unit tests for ScMarkData and ScMultiSel will come in a follow up patch. Change-Id: I300ff80bebd6f4f39c284c1e8cb7deece82c1bec Reviewed-on: https://gerrit.libreoffice.org/22163 Tested-by: Jenkins Reviewed-by: Markus Mohrhard --- sc/inc/markarr.hxx | 1 + 1 file changed, 1 insertion(+) (limited to 'sc/inc/markarr.hxx') diff --git a/sc/inc/markarr.hxx b/sc/inc/markarr.hxx index 2988fe4b74cb..386b97adaa8a 100644 --- a/sc/inc/markarr.hxx +++ b/sc/inc/markarr.hxx @@ -41,6 +41,7 @@ friend class ScDocument; // for FillInfo public: ScMarkArray(); + ScMarkArray( ScMarkArray&& rArray ); ~ScMarkArray(); void Reset( bool bMarked = false ); bool GetMark( SCROW nRow ) const; -- cgit