diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-11 08:42:49 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-11 09:48:18 +0200 |
commit | 286dfc2a720ea8bd6b26c10126202fa25a112e0f (patch) | |
tree | 4b179846f09fa0be53f9cd6e078b7d0b79b92392 /ucbhelper | |
parent | 3553a5d3a899954c4db09e264d8faf07e817e564 (diff) |
loplugin: defaultparams
Change-Id: I50ba6a836473961d952ed88e56532501469c5368
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/provider/contentidentifier.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucbhelper/source/provider/contentidentifier.cxx b/ucbhelper/source/provider/contentidentifier.cxx index b8f8cbc9b255..29c45d075635 100644 --- a/ucbhelper/source/provider/contentidentifier.cxx +++ b/ucbhelper/source/provider/contentidentifier.cxx @@ -66,7 +66,7 @@ ContentIdentifier_Impl::ContentIdentifier_Impl(const OUString& rURL ) // The content provider scheme is the part before the first ':' // within the content id. - sal_Int32 nPos = rURL.indexOf( ':', 0 ); + sal_Int32 nPos = rURL.indexOf( ':' ); if ( nPos != -1 ) { OUString aScheme( rURL.copy( 0, nPos ) ); |