summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/condformatbuffer.hxx
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2017-01-12 22:04:49 +0100
committerJochen Nitschke <j.nitschke+logerrit@ok.de>2017-01-15 23:52:45 +0000
commitff08e8d5618f84366439c6f48bd7c5f3062905a3 (patch)
treeb5b2c1e7eb7069b6fa5303adc956ebffdb1aabce /sc/source/filter/inc/condformatbuffer.hxx
parent5c6b81622530e708b2bb7901bcc531212a6ef72e (diff)
tdf#48140 replace ApiCellRangeList in xlsx import (2)
Change-Id: I3e609c54f7b21c300944362d27248d92ab69b886 Reviewed-on: https://gerrit.libreoffice.org/33092 Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de> Tested-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Diffstat (limited to 'sc/source/filter/inc/condformatbuffer.hxx')
-rw-r--r--sc/source/filter/inc/condformatbuffer.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/inc/condformatbuffer.hxx b/sc/source/filter/inc/condformatbuffer.hxx
index 3ff9ad359b98..a0c7aec5193b 100644
--- a/sc/source/filter/inc/condformatbuffer.hxx
+++ b/sc/source/filter/inc/condformatbuffer.hxx
@@ -184,7 +184,7 @@ typedef std::shared_ptr< CondFormatRule > CondFormatRuleRef;
/** Model for a conditional formatting object. */
struct CondFormatModel
{
- ApiCellRangeList maRanges; /// Cell ranges for this conditional format.
+ ScRangeList maRanges; /// Cell ranges for this conditional format.
bool mbPivot; /// Conditional formatting belongs to pivot table.
explicit CondFormatModel();
@@ -210,7 +210,7 @@ public:
void finalizeImport();
/** Returns the cell ranges this conditional formatting belongs to. */
- inline const ApiCellRangeList& getRanges() const { return maModel.maRanges; }
+ inline const ScRangeList& getRanges() const { return maModel.maRanges; }
void setReadyForFinalize() { mbReadyForFinalize = true; }
private: