[Libreoffice-commits] core.git: Branch 'feature/formula-core-rework' - sc/inc sc/source
Kohei Yoshida
kohei.yoshida at gmail.com
Wed May 15 09:30:01 PDT 2013
sc/inc/document.hxx | 2 +-
sc/source/core/data/document.cxx | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit bd7ea19d0eeb0aae3102fca569e7f914180380c6
Author: Kohei Yoshida <kohei.yoshida at gmail.com>
Date: Wed May 15 12:32:05 2013 -0400
Remove unused function argument.
Change-Id: I0b4deec7f4b10c7b14e482f61c667972caa30bc8
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 00cd7ab..4d71471 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -1145,7 +1145,7 @@ public:
const ScMarkData& rMark, SCsCOL nDx, SCsROW nDy );
void CopyNonFilteredFromClip(
sc::CopyFromClipContext& rCxt, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
- const ScMarkData& rMark, SCsCOL nDx, SCsROW nDy, SCROW & rClipStartRow );
+ const ScMarkData& rMark, SCsCOL nDx, SCROW & rClipStartRow );
void StartListeningFromClip( SCCOL nCol1, SCROW nRow1,
SCCOL nCol2, SCROW nRow2,
diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index d0bc5a6..342499e 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -2390,7 +2390,7 @@ void ScDocument::CopyBlockFromClip(
void ScDocument::CopyNonFilteredFromClip(
sc::CopyFromClipContext& rCxt, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
- const ScMarkData& rMark, SCsCOL nDx, SCsROW /*nDy*/, SCROW & rClipStartRow )
+ const ScMarkData& rMark, SCsCOL nDx, SCROW & rClipStartRow )
{
// call CopyBlockFromClip for ranges of consecutive non-filtered rows
// nCol1/nRow1 etc. is in target doc
@@ -2564,7 +2564,7 @@ void ScDocument::CopyFromClip( const ScRange& rDestRange, const ScMarkData& rMar
else
{
CopyNonFilteredFromClip(
- aCxt, nC1, nR1, nC2, nR2, rMark, nDx, nDy, nClipStartRow);
+ aCxt, nC1, nR1, nC2, nR2, rMark, nDx, nClipStartRow);
}
nC1 = nC2 + 1;
nC2 = std::min((SCCOL)(nC1 + nXw), nCol2);
More information about the Libreoffice-commits
mailing list