diff options
author | Oliver Specht <os@openoffice.org> | 2009-12-03 09:21:21 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2009-12-03 09:21:21 +0000 |
commit | b5904424ea631d5ba77a742fb7d1ca9e5ddd26b7 (patch) | |
tree | 803c80468d8bacce3b1025639d20eab380cbef2e | |
parent | 067a53bbcd209d7458b04142f989e1ff7ec1f785 (diff) |
#i107401# page number of page bound frames fixed
-rw-r--r-- | sw/source/core/doc/docnew.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/docnew.cxx b/sw/source/core/doc/docnew.cxx index 2a36ce970615..f4e66cba54ac 100644 --- a/sw/source/core/doc/docnew.cxx +++ b/sw/source/core/doc/docnew.cxx @@ -1417,7 +1417,7 @@ void SwDoc::Paste( const SwDoc& rSource ) SwFmtAnchor aAnchor( rCpyFmt.GetAnchor() ); if( FLY_PAGE == aAnchor.GetAnchorId() ) { - aAnchor.SetPageNum( aAnchor.GetPageNum() + /*nStartPageNumber - */1 ); + aAnchor.SetPageNum( aAnchor.GetPageNum() /*+ nStartPageNumber - */); } else continue; |