summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-23 09:59:31 +0200
committerNoel Grandin <noel@peralex.com>2015-07-23 09:59:31 +0200
commitbe7569acc13e90a049117b84802e92dbc4214238 (patch)
tree0ca9c5d22fc6422da4e2c93a79b2a51ef54a96ad /unotools
parent4ee98aec9f1835bba6eaab9e982c255e8c99be1e (diff)
loplugin:stringconstant
Change-Id: I02aa11489a993b9788dc1038d9772672f1d2ecef
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/misc/mediadescriptor.cxx2
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();