diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-10-04 19:30:08 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-10-04 19:30:08 +0000 |
commit | 160f790791d6e839919f0d0f9277cb047fe020ae (patch) | |
tree | c4de87f4f01b4844ce008aa160fc5f47703fc863 | |
parent | ebeef90776b167c7a5e9165084abc74ff11360f4 (diff) |
INTEGRATION: CWS mav09 (1.14.114); FILE MERGED
2004/07/08 08:29:38 mav 1.14.114.3: RESYNC: (1.15-1.17); FILE MERGED
2004/04/29 16:50:04 mav 1.14.114.2: RESYNC: (1.14-1.15); FILE MERGED
2004/04/29 11:03:41 mba 1.14.114.1: #i27773#: no SvFileStream please
-rw-r--r-- | unotools/source/ucbhelper/tempfile.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unotools/source/ucbhelper/tempfile.cxx b/unotools/source/ucbhelper/tempfile.cxx index 4f2e02262f15..eacd09afc655 100644 --- a/unotools/source/ucbhelper/tempfile.cxx +++ b/unotools/source/ucbhelper/tempfile.cxx @@ -2,9 +2,9 @@ * * $RCSfile: tempfile.cxx,v $ * - * $Revision: 1.17 $ + * $Revision: 1.18 $ * - * last change: $Author: hjs $ $Date: 2004-06-25 17:07:54 $ + * last change: $Author: kz $ $Date: 2004-10-04 20:30:08 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -398,7 +398,7 @@ SvStream* TempFile::GetStream( StreamMode eMode ) if ( GetURL().Len() ) pImp->pStream = UcbStreamHelper::CreateStream( pImp->aURL, eMode, sal_True /* bFileExists */ ); else - pImp->pStream = new SvFileStream( pImp->aName, eMode ); + pImp->pStream = new SvMemoryStream( eMode ); } return pImp->pStream; |