diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-08-29 16:49:30 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-08-29 16:49:59 +0200 |
commit | a513130cba97f140574ec2d7b260e5f1000e7264 (patch) | |
tree | e21054a05639344a3b5aec913b3e2b382df01e29 | |
parent | da7d3f708d0619fdb17128ffbaa430becb79121f (diff) |
loplugin:sallogareas
Change-Id: Iabbdee1e3d2cc72ac2771709cb02d70ce3a62ba2
-rw-r--r-- | sw/source/core/doc/docnew.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/core/doc/docnew.cxx b/sw/source/core/doc/docnew.cxx index 8c0c8aca683d..8cd2dc936395 100644 --- a/sw/source/core/doc/docnew.cxx +++ b/sw/source/core/doc/docnew.cxx @@ -878,7 +878,7 @@ void SwDoc::ReplaceCompatibilityOptions(const SwDoc& rSource) SfxObjectShell* SwDoc::CreateCopy( bool bCallInitNew, bool bEmpty ) const { - SAL_INFO( "sw.pagefrm", "(SwDoc::CreateCopy in" ); + SAL_INFO( "sw.pageframe", "(SwDoc::CreateCopy in" ); SwDoc* pRet = new SwDoc; // we have to use pointer here, since the callee has to decide whether @@ -917,7 +917,7 @@ SfxObjectShell* SwDoc::CreateCopy( bool bCallInitNew, bool bEmpty ) const (void)pRet->release(); - SAL_INFO( "sw.pagefrm", "SwDoc::CreateCopy out)" ); + SAL_INFO( "sw.pageframe", "SwDoc::CreateCopy out)" ); return pRetShell; } @@ -961,7 +961,7 @@ static void lcl_CopyFollowPageDesc( SwNodeIndex SwDoc::AppendDoc(const SwDoc& rSource, sal_uInt16 const nStartPageNumber, bool const bDeletePrevious, int pageOffset, const sal_uLong nDocNo) { - SAL_INFO( "sw.pagefrm", "(SwDoc::AppendDoc in " << bDeletePrevious ); + SAL_INFO( "sw.pageframe", "(SwDoc::AppendDoc in " << bDeletePrevious ); // GetEndOfExtras + 1 = StartOfContent == no content node! // This ensures it won't be merged in the SwTextNode at the position. @@ -1079,9 +1079,9 @@ SwNodeIndex SwDoc::AppendDoc(const SwDoc& rSource, sal_uInt16 const nStartPageNu // Flush the page break, if we want to keep it if ( !bDeletePrevious ) { - SAL_INFO( "sw.pagefrm", "(Flush pagebreak AKA EndAllAction" ); + SAL_INFO( "sw.pageframe", "(Flush pagebreak AKA EndAllAction" ); pTargetShell->EndAllAction(); - SAL_INFO( "sw.pagefrm", "Flush changes AKA EndAllAction)" ); + SAL_INFO( "sw.pageframe", "Flush changes AKA EndAllAction)" ); pTargetShell->StartAllAction(); } } @@ -1258,7 +1258,7 @@ else if ( pTargetShell ) pTargetShell->EndAllAction(); - SAL_INFO( "sw.pagefrm", "SwDoc::AppendDoc out)" ); + SAL_INFO( "sw.pageframe", "SwDoc::AppendDoc out)" ); return aStartAppendIndex; } |