summaryrefslogtreecommitdiff
path: root/ucbhelper
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-11 08:42:49 +0200
committerNoel Grandin <noel@peralex.com>2015-08-11 09:48:18 +0200
commit286dfc2a720ea8bd6b26c10126202fa25a112e0f (patch)
tree4b179846f09fa0be53f9cd6e078b7d0b79b92392 /ucbhelper
parent3553a5d3a899954c4db09e264d8faf07e817e564 (diff)
loplugin: defaultparams
Change-Id: I50ba6a836473961d952ed88e56532501469c5368
Diffstat (limited to 'ucbhelper')
-rw-r--r--ucbhelper/source/provider/contentidentifier.cxx2
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 ) );