diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-05-03 15:25:37 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-05-09 13:34:32 -0400 |
commit | c86014f5c6340a97bcea600ae3bd31d5f54feebb (patch) | |
tree | 20ba07b21308e4f5fa1e955a652c2caeae05d7af /sc/inc/column.hxx | |
parent | cfc71668da381c3a2304b4de6288a1af82ce0752 (diff) |
DeleteRange is only called from within ScColumn, and should be private.
Change-Id: I8c5ddbde9909e5d30d7aead5bb373e3cb726c4e0
Diffstat (limited to 'sc/inc/column.hxx')
-rw-r--r-- | sc/inc/column.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx index 907074db06f7..3c79fa3931b8 100644 --- a/sc/inc/column.hxx +++ b/sc/inc/column.hxx @@ -230,7 +230,6 @@ public: bool TestInsertRow( SCSIZE nSize ) const; void InsertRow( SCROW nStartRow, SCSIZE nSize ); void DeleteRow( SCROW nStartRow, SCSIZE nSize ); - void DeleteRange( SCSIZE nStartIndex, SCSIZE nEndIndex, sal_uInt16 nDelFlag ); void DeleteArea(SCROW nStartRow, SCROW nEndRow, sal_uInt16 nDelFlag ); void CopyToClip(SCROW nRow1, SCROW nRow2, ScColumn& rColumn, bool bKeepScenarioFlags) const; void CopyStaticToDocument(SCROW nRow1, SCROW nRow2, ScColumn& rDestCol); @@ -476,6 +475,8 @@ public: SvtBroadcaster* GetBroadcaster( SCROW nRow ); private: + void DeleteRange( SCSIZE nStartIndex, SCSIZE nEndIndex, sal_uInt16 nDelFlag ); + const ScFormulaCell* FetchFormulaCell( SCROW nRow ) const; ScBaseCell* CloneCell(SCSIZE nIndex, sal_uInt16 nFlags, ScDocument& rDestDoc, const ScAddress& rDestPos) const; |