diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-06 13:12:42 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-12 11:56:42 +0200 |
commit | 7473e8a4569227b692f30793276f1c1b4de7532b (patch) | |
tree | fa649feb45f8d4ae58b4cdf3c27c2fab70fe46b9 /svx | |
parent | 80ef151d967540dfcac54572e6eee643a71ff8c0 (diff) |
convert vcl/graphicfilter.hxx from String to OUString
Change-Id: I41997c49e6332fc378a3173616112a3a26e336ae
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/core/graphichelper.cxx | 2 | ||||
-rw-r--r-- | svx/source/xoutdev/_xoutbmp.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/core/graphichelper.cxx b/svx/source/core/graphichelper.cxx index 571fcbebba5f..5ff276636447 100644 --- a/svx/source/core/graphichelper.cxx +++ b/svx/source/core/graphichelper.cxx @@ -136,7 +136,7 @@ OUString GraphicHelper::ExportGraphic( const Graphic& rGraphic, const OUString& // "wrong" extension? GetPreferedExtension( aExtension, rGraphic ); for ( sal_uInt16 i = 0; i < nCount; ++i ) - if ( aExtension == rGraphicFilter.GetExportFormatShortName( i ).ToLowerAscii() ) + if ( aExtension == rGraphicFilter.GetExportFormatShortName( i ).toAsciiLowerCase() ) { nDefaultFilter = i; break; diff --git a/svx/source/xoutdev/_xoutbmp.cxx b/svx/source/xoutdev/_xoutbmp.cxx index bad053361de9..9d382fbfb8e6 100644 --- a/svx/source/xoutdev/_xoutbmp.cxx +++ b/svx/source/xoutdev/_xoutbmp.cxx @@ -236,7 +236,7 @@ sal_uInt16 XOutBitmap::WriteGraphic( const Graphic& rGraphic, String& rFileName, if( GRFILTER_FORMAT_NOTFOUND != nFilter ) { - aExt = rFilter.GetExportFormatShortName( nFilter ).ToLowerAscii(); + aExt = rFilter.GetExportFormatShortName( nFilter ).toAsciiLowerCase(); if( bWriteTransGrf ) { |