diff options
author | Thorsten Behrens <thb@openoffice.org> | 2002-11-19 17:02:28 +0000 |
---|---|---|
committer | Thorsten Behrens <thb@openoffice.org> | 2002-11-19 17:02:28 +0000 |
commit | 6eeb574072a30ee71b189b3ef9ca26ed969fc654 (patch) | |
tree | fee8dca8d3ac61c935387a831f1ac1bb9f1c3107 /sd/source/ui/view/sdview3.cxx | |
parent | 2f33cd28443f40078992fc06a0c48943bc00a750 (diff) |
#96029# Added bPreservePageNames to InsertBookmarkAsPage, to keep original page name when replacing links
Diffstat (limited to 'sd/source/ui/view/sdview3.cxx')
-rw-r--r-- | sd/source/ui/view/sdview3.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/view/sdview3.cxx b/sd/source/ui/view/sdview3.cxx index 63236265e..ac3115f00 100644 --- a/sd/source/ui/view/sdview3.cxx +++ b/sd/source/ui/view/sdview3.cxx @@ -2,9 +2,9 @@ * * $RCSfile: sdview3.cxx,v $ * - * $Revision: 1.44 $ + * $Revision: 1.45 $ * - * last change: $Author: ka $ $Date: 2002-10-20 07:08:42 $ + * last change: $Author: thb $ $Date: 2002-11-19 18:02:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -322,7 +322,7 @@ BOOL SdView::InsertData( const TransferableDataHelper& rDataHelper, nInsertPgCnt = (USHORT) rBookmarkList.Count(); pDoc->InsertBookmarkAsPage( const_cast< List* >( &rBookmarkList ), NULL, FALSE, FALSE, nInsertPos, pOwnData == SD_MOD()->pTransferDrag, - pOwnData->GetPageDocShell(), TRUE, bMergeMasterPages ); + pOwnData->GetPageDocShell(), TRUE, bMergeMasterPages, FALSE ); if( bWait ) pWin->EnterWait(); @@ -344,7 +344,7 @@ BOOL SdView::InsertData( const TransferableDataHelper& rDataHelper, nInsertPgCnt = pDataDoc->GetSdPageCount( PK_STANDARD ); pDoc->InsertBookmarkAsPage( NULL, NULL, FALSE, FALSE, nInsertPos, pOwnData == SD_MOD()->pTransferDrag, - pDataDocSh, TRUE, bMergeMasterPages ); + pDataDocSh, TRUE, bMergeMasterPages, FALSE ); if( bWait ) pWin->EnterWait(); |