diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-11-28 15:11:55 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-11-28 15:14:36 +0100 |
commit | 4d4ce886672194a76ef1de327c97c484f7a50e51 (patch) | |
tree | 67e4e9c8373a2ef575090914a104d8231a26deb8 /sc/inc | |
parent | a9b7b4ab6bdec13341c8bdd4b359e5a2f501774c (diff) |
prevent some nasty ScRangeList->ScRange->ScRangeList conversion
Change-Id: I9dac82ffeed920ce39aab16d89a91e2f9083908b
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/document.hxx | 1 | ||||
-rw-r--r-- | sc/inc/docuno.hxx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index f114ecb32365..1612b2fc0b08 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -1523,6 +1523,7 @@ public: bool ContinueOnlineSpelling(); // TRUE = found s.th. void RepaintRange( const ScRange& rRange ); + void RepaintRange( const ScRangeList& rRange ); bool IsIdleDisabled() const { return bIdleDisabled; } void DisableIdle(bool bDo) { bIdleDisabled = bDo; } diff --git a/sc/inc/docuno.hxx b/sc/inc/docuno.hxx index 4ec44634c285..69852358ed7d 100644 --- a/sc/inc/docuno.hxx +++ b/sc/inc/docuno.hxx @@ -136,6 +136,7 @@ public: ScSheetSaveData* GetSheetSaveData(); void RepaintRange( const ScRange& rRange ); + void RepaintRange( const ScRangeList& rRange ); bool HasChangesListeners() const; |