summaryrefslogtreecommitdiff
path: root/sc/inc/conditio.hxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-06-04 10:24:45 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-06-11 08:01:24 +0200
commitcaad0f6c79909f2fb4865ac8395fc1798b8be7a6 (patch)
tree3e88a00425eadfebb08ca673d929ea60a4c6a0c7 /sc/inc/conditio.hxx
parent08ed74c89f7f018167b858e74cc30ae0272fae6c (diff)
adjust import/export code to merged conditional formats
Change-Id: Ib9cd4e09e55ff2413db8e1daf45624d695e3113d
Diffstat (limited to 'sc/inc/conditio.hxx')
-rw-r--r--sc/inc/conditio.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/conditio.hxx b/sc/inc/conditio.hxx
index b11261868ed4..6874c7815645 100644
--- a/sc/inc/conditio.hxx
+++ b/sc/inc/conditio.hxx
@@ -259,7 +259,7 @@ class SC_DLLPUBLIC ScConditionalFormat
typedef boost::ptr_vector<ScFormatEntry> CondFormatContainer;
CondFormatContainer maEntries;
bool bIsUsed; // temporary at Save
- ScRangeListRef pRanges; // Ranges for conditional format
+ ScRangeList maRanges; // Ranges for conditional format
public:
ScConditionalFormat(sal_uInt32 nNewKey, ScDocument* pDocument);
@@ -270,8 +270,8 @@ public:
ScConditionalFormat* Clone(ScDocument* pNewDoc = NULL) const;
void AddEntry( ScFormatEntry* pNew );
- void AddRangeInfo( const ScRangeListRef& rRanges );
- const ScRangeListRef& GetRangeInfo() const { return pRanges; }
+ void AddRange( const ScRangeList& rRanges );
+ const ScRangeList& GetRange() const { return maRanges; }
bool IsEmpty() const { return maEntries.empty(); }
size_t size() const { return maEntries.size(); }