summaryrefslogtreecommitdiffstats
path: root/sc/inc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2017-10-15 19:40:23 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-10-17 08:55:56 +0200
commite80558911ed6fad2473c92aafe774e7e31ab7401 (patch)
tree360589541f8231b471672917696f97fe0343e353 /sc/inc
parentdyncolcontainer: use ScCompressedArray for pColWidth (diff)
downloadcore-e80558911ed6fad2473c92aafe774e7e31ab7401.tar.gz
core-e80558911ed6fad2473c92aafe774e7e31ab7401.zip
dyncolcontainer: use ScBitMaskCompressedArray for pColFlags
Change-Id: I5df10fe7477e05424eb5e8a3544073a264568aac Reviewed-on: https://gerrit.libreoffice.org/43409 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/table.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx
index adf2a8743c2e..243bf132e8f5 100644
--- a/sc/inc/table.hxx
+++ b/sc/inc/table.hxx
@@ -180,7 +180,7 @@ private:
std::unique_ptr<ScCompressedArray<SCCOL, sal_uInt16>> mpColWidth;
std::unique_ptr<ScFlatUInt16RowSegments> mpRowHeights;
- std::unique_ptr<CRFlags[]> pColFlags;
+ std::unique_ptr<ScBitMaskCompressedArray<SCCOL, CRFlags>> mpColFlags;
ScBitMaskCompressedArray< SCROW, CRFlags>* pRowFlags;
std::unique_ptr<ScFlatBoolColSegments> mpHiddenCols;
std::unique_ptr<ScFlatBoolRowSegments> mpHiddenRows;