summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-12-13 11:39:02 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-12-13 11:39:02 +0000
commit50332a45e85b06452bc1ace03b869c64b3c9fe57 (patch)
tree679c489b6f7d46fec3396e8a05e9e38d8bc9b987
parentc7e63c3369d796401faea73b5a54de9694eb2ba0 (diff)
INTEGRATION: CWS ineturl1 (1.10.212); FILE MERGED
2004/10/27 13:44:06 cmc 1.10.212.2: RESYNC: (1.10-1.11); FILE MERGED 2004/09/30 12:14:48 cmc 1.10.212.1: #i34006# modify INetURLObject to use rtl::OUString and rtl::OUStringBuffer
-rw-r--r--vcl/source/gdi/gfxlink.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/gdi/gfxlink.cxx b/vcl/source/gdi/gfxlink.cxx
index b6a91c7d74c2..b91241dcda75 100644
--- a/vcl/source/gdi/gfxlink.cxx
+++ b/vcl/source/gdi/gfxlink.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: gfxlink.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: kz $ $Date: 2004-10-04 19:38:19 $
+ * last change: $Author: hr $ $Date: 2004-12-13 12:39:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -426,9 +426,9 @@ ImpSwap::ImpSwap( BYTE* pData, ULONG nDataSize ) :
{
::utl::TempFile aTempFile;
- maURL = aTempFile.GetURL();
+ maURL = INetURLObject(aTempFile.GetURL());
- if( maURL.GetMainURL( INetURLObject::NO_DECODE ).Len() )
+ if( maURL.GetMainURL( INetURLObject::NO_DECODE ).getLength() )
{
SvStream* pOStm = ::utl::UcbStreamHelper::CreateStream( maURL.GetMainURL( INetURLObject::NO_DECODE ), STREAM_READWRITE | STREAM_SHARE_DENYWRITE );