diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-01-31 17:46:09 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-01-31 17:52:04 -0500 |
commit | 28d5f8c69b2105dbc13af3993fcc5a4cfd4cc432 (patch) | |
tree | 61c157f9ddebe488f6e9e4b13000259cc5ce33d4 /sc/inc | |
parent | 9b677819a703208a650c08186546b11f0a535fd2 (diff) |
Extract this code block into its own method.
Change-Id: I43cc4ae350455c104d079e6aaaa28eabbd6c04e7
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/table.hxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx index 658b4c1fa7e4..095b16e536e2 100644 --- a/sc/inc/table.hxx +++ b/sc/inc/table.hxx @@ -915,10 +915,17 @@ public: static void UpdateSearchItemAddressForReplace( const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow ); private: - void FillSimple( + void FillSeriesSimple( ScCellValue& rSrcCell, SCCOLROW& rInner, SCCOLROW nIMin, SCCOLROW nIMax, SCCOLROW& rCol, SCCOLROW& rRow, bool bVertical, ScProgress* pProgress, sal_uLong& rProgress ); + void FillAutoSimple( + SCCOLROW nISrcStart, SCCOLROW nISrcEnd, SCCOLROW nIStart, SCCOLROW nIEnd, + SCCOLROW& rInner, SCCOLROW& rCol, SCCOLROW& rRow, + sal_uLong nActFormCnt, sal_uLong nMaxFormCnt, + bool bHasFiltered, bool bVertical, bool bPositive, + ScProgress* pProgress, sal_uLong& rProgress ); + void FillSeries( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, sal_uLong nFillCount, FillDir eFillDir, FillCmd eFillCmd, FillDateCmd eFillDateCmd, |