summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <Michael.Stahl@cib.de>2019-10-23 13:12:03 +0200
committerMichael Stahl <Michael.Stahl@cib.de>2019-10-23 13:13:09 +0200
commitd9030ad6298e2f49ee63489d6158ea6ad23c0111 (patch)
tree2b2dc7a569fda7eb741b81e685a1ff07d6ffab79
parent2e636ee01e32208387ca77c4edadf6929063158a (diff)
sw: fix build
should have just reverted that patch... Change-Id: I17c8517a0dfd500423a6cd185abb89f40164daa9
-rw-r--r--sw/source/core/doc/DocumentContentOperationsManager.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/doc/DocumentContentOperationsManager.cxx b/sw/source/core/doc/DocumentContentOperationsManager.cxx
index c7faedd49eab..410a63e1d6d6 100644
--- a/sw/source/core/doc/DocumentContentOperationsManager.cxx
+++ b/sw/source/core/doc/DocumentContentOperationsManager.cxx
@@ -4433,7 +4433,7 @@ bool DocumentContentOperationsManager::CopyImpl(SwPaM& rPam, SwPosition& rPos,
if (Breaks.empty())
{
- return CopyImplImpl(rPam, rPos, bMakeNewFrames, bCopyAll, pCopyRange);
+ return CopyImplImpl(rPam, rPos, bCopyAll, pCopyRange);
}
SwPosition const & rSelectionEnd( *rPam.End() );
@@ -4455,7 +4455,7 @@ bool DocumentContentOperationsManager::CopyImpl(SwPaM& rPam, SwPosition& rPos,
if (rStart < rEnd) // check if part is empty
{
// pass in copyRange member as rPos; should work ...
- bRet &= CopyImplImpl(aPam, *copyRange.Start(), bMakeNewFrames, bCopyAll, &copyRange);
+ bRet &= CopyImplImpl(aPam, *copyRange.Start(), bCopyAll, &copyRange);
nOffset = iter->first - rStart.nNode.GetIndex(); // fly nodes...
if (pCopyRange)
{
@@ -4475,7 +4475,7 @@ bool DocumentContentOperationsManager::CopyImpl(SwPaM& rPam, SwPosition& rPos,
rStart = *rPam.Start(); // set to original start
if (rStart < rEnd) // check if part is empty
{
- bRet &= CopyImplImpl(aPam, *copyRange.Start(), bMakeNewFrames, bCopyAll, &copyRange);
+ bRet &= CopyImplImpl(aPam, *copyRange.Start(), bCopyAll, &copyRange);
if (pCopyRange)
{
if (bFirst)