diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-01-11 23:38:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-01-11 23:38:38 +0100 |
commit | d1a6c708968327be134cbfd422a3467752546f64 (patch) | |
tree | c636245fddfa07f4ce8250cb70ac57008865f010 /sfx2/source | |
parent | 0b8b372c7fe829f9457efd8f945b8b50007f1ea6 (diff) |
loplugin:defaultparams
Change-Id: I919f9f5f9ccb1429624f9c8e75574fec71a2b370
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/bastyp/fltfnc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/bastyp/fltfnc.cxx b/sfx2/source/bastyp/fltfnc.cxx index 6edc51d7cd34..863b736be192 100644 --- a/sfx2/source/bastyp/fltfnc.cxx +++ b/sfx2/source/bastyp/fltfnc.cxx @@ -1069,7 +1069,7 @@ void SfxFilterContainer::ReadSingleFilter_Impl( // register SfxFilter // first erase module name from old filter names! // e.g: "scalc: DIF" => "DIF" - sal_Int32 nStartRealName = sFilterName.indexOf( ": ", 0 ); + sal_Int32 nStartRealName = sFilterName.indexOf( ": " ); if( nStartRealName != -1 ) { SAL_WARN( "sfx.bastyp", "Old format, not supported!"); |