summaryrefslogtreecommitdiff
path: root/sw/source/core/draw
diff options
context:
space:
mode:
authorKai Ahrens <ka@openoffice.org>2000-12-03 16:02:17 +0000
committerKai Ahrens <ka@openoffice.org>2000-12-03 16:02:17 +0000
commit88d82429bed528e05c7d80491f08f242760fa28d (patch)
treed8d827b3f031206d13ac5d08bb3c91baaa62e79a /sw/source/core/draw
parentc527328dd724b9f7a5e9cc4a6995b445c2fc195b (diff)
#80795#: new document stream handling
Diffstat (limited to 'sw/source/core/draw')
-rw-r--r--sw/source/core/draw/drawdoc.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/draw/drawdoc.cxx b/sw/source/core/draw/drawdoc.cxx
index 50f77d8341bc..c25d313560a3 100644
--- a/sw/source/core/draw/drawdoc.cxx
+++ b/sw/source/core/draw/drawdoc.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: drawdoc.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: jp $ $Date: 2000-10-06 13:06:25 $
+ * last change: $Author: ka $ $Date: 2000-12-03 17:02:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -227,7 +227,7 @@ SdrPage* SwDrawDocument::AllocPage(FASTBOOL bMasterPage)
}
-SvStream* SwDrawDocument::GetDocumentStream( FASTBOOL& rbDeleteAfterUse ) const
+SvStream* SwDrawDocument::GetDocumentStream( SdrDocumentStreamInfo& rInfo ) const
{
SvStream* pRet = 0;
SvStorageRef xRoot( pDoc->GetDocStorage() );
@@ -264,7 +264,7 @@ SvStream* SwDrawDocument::GetDocumentStream( FASTBOOL& rbDeleteAfterUse ) const
pRet = xRoot->OpenStream( sDrawStrmNm,
STREAM_READ | STREAM_SHARE_DENYWRITE | STREAM_NOCREATE );
if( pRet )
- rbDeleteAfterUse = TRUE;
+ rInfo.mbDeleteAfterUse = TRUE;
}
return pRet;
}