summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-12-13 11:43:53 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-12-13 11:43:53 +0000
commitd601693ceba510f115a056ca0d9b51600baae16b (patch)
treec36eefdd8ff6231897fbfd405fb7d2731d362a3f
parent551ed7ef6f38c7b71be62b19ac0ba85966f87d3f (diff)
INTEGRATION: CWS ineturl1 (1.12.130); FILE MERGED
2004/09/30 13:10:08 cmc 1.12.130.1: #i34006# modify INetURLObject to use rtl::OUString and rtl::OUStringBuffer
-rw-r--r--svtools/source/filter.vcl/filter/filter2.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/filter.vcl/filter/filter2.cxx b/svtools/source/filter.vcl/filter/filter2.cxx
index c1c824884ad2..659d41252f55 100644
--- a/svtools/source/filter.vcl/filter/filter2.cxx
+++ b/svtools/source/filter.vcl/filter/filter2.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: filter2.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: rt $ $Date: 2004-06-16 10:16:50 $
+ * last change: $Author: hr $ $Date: 2004-12-13 12:43:53 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -92,7 +92,7 @@ GraphicDescriptor::GraphicDescriptor( const String* pPath ) :
if ( pPath )
{
INetURLObject aURL( *pPath, INET_PROT_FILE );
- aPathExt = aURL.GetFileExtension().ToLowerAscii();
+ aPathExt = aURL.GetFileExtension().toAsciiLowerCase();
}
bLinked = TRUE;
bLinkChanged = FALSE;
@@ -108,7 +108,7 @@ GraphicDescriptor::GraphicDescriptor( const String* pPath ) :
GraphicDescriptor::GraphicDescriptor( const INetURLObject& rPath ) :
pFileStm( ::utl::UcbStreamHelper::CreateStream( rPath.GetMainURL( INetURLObject::NO_DECODE ), STREAM_READ ) ),
- aPathExt( rPath.GetFileExtension().ToLowerAscii() )
+ aPathExt( rPath.GetFileExtension().toAsciiLowerCase() )
{
if ( pFileStm )
{
@@ -137,7 +137,7 @@ GraphicDescriptor::GraphicDescriptor( SvStream& rInStream, const String* pPath)
if ( pPath )
{
INetURLObject aURL( *pPath );
- aPathExt = aURL.GetFileExtension().ToLowerAscii();
+ aPathExt = aURL.GetFileExtension().toAsciiLowerCase();
}
nStmPos = rInStream.Tell();
pBaseStm = &rInStream;