diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-23 09:59:31 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-07-23 09:59:31 +0200 |
commit | be7569acc13e90a049117b84802e92dbc4214238 (patch) | |
tree | 0ca9c5d22fc6422da4e2c93a79b2a51ef54a96ad /unotools | |
parent | 4ee98aec9f1835bba6eaab9e982c255e8c99be1e (diff) |
loplugin:stringconstant
Change-Id: I02aa11489a993b9788dc1038d9772672f1d2ecef
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/misc/mediadescriptor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/misc/mediadescriptor.cxx b/unotools/source/misc/mediadescriptor.cxx index f874a979ccf0..78c6482bbc9f 100644 --- a/unotools/source/misc/mediadescriptor.cxx +++ b/unotools/source/misc/mediadescriptor.cxx @@ -694,7 +694,7 @@ bool MediaDescriptor::impl_openStreamWithURL( const OUString& sURL, bool bLockFi aContent.get().is() ? aContent.get()->getIdentifier() : 0 ); if ( xContId.is() ) aScheme = xContId->getContentProviderScheme(); - if(!aScheme.equalsIgnoreAsciiCaseAscii( "http" ) && !aScheme.equalsIgnoreAsciiCaseAscii( "https" )) + if(!aScheme.equalsIgnoreAsciiCase( "http" ) && !aScheme.equalsIgnoreAsciiCase( "https" )) return false; } xStream.clear(); |