[Libreoffice-commits] core.git: sw/source
Michael Stahl (via logerrit)
logerrit at kemper.freedesktop.org
Wed Oct 23 11:16:05 UTC 2019
sw/source/core/doc/DocumentContentOperationsManager.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit d9030ad6298e2f49ee63489d6158ea6ad23c0111
Author: Michael Stahl <Michael.Stahl at cib.de>
AuthorDate: Wed Oct 23 13:12:03 2019 +0200
Commit: Michael Stahl <Michael.Stahl at cib.de>
CommitDate: Wed Oct 23 13:13:09 2019 +0200
sw: fix build
should have just reverted that patch...
Change-Id: I17c8517a0dfd500423a6cd185abb89f40164daa9
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)
More information about the Libreoffice-commits
mailing list