diff options
author | Michael Stahl <Michael.Stahl@cib.de> | 2019-10-23 13:12:03 +0200 |
---|---|---|
committer | Michael Stahl <Michael.Stahl@cib.de> | 2019-10-23 13:13:09 +0200 |
commit | d9030ad6298e2f49ee63489d6158ea6ad23c0111 (patch) | |
tree | 2b2dc7a569fda7eb741b81e685a1ff07d6ffab79 /sw | |
parent | 2e636ee01e32208387ca77c4edadf6929063158a (diff) |
sw: fix build
should have just reverted that patch...
Change-Id: I17c8517a0dfd500423a6cd185abb89f40164daa9
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/doc/DocumentContentOperationsManager.cxx | 6 |
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, ©Range); + bRet &= CopyImplImpl(aPam, *copyRange.Start(), bCopyAll, ©Range); 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, ©Range); + bRet &= CopyImplImpl(aPam, *copyRange.Start(), bCopyAll, ©Range); if (pCopyRange) { if (bFirst) |