diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-16 13:21:56 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-16 13:21:56 +0200 |
commit | 732476f2e3c10edf1776171605d8ce6c6b22338f (patch) | |
tree | 30f74ceb2c885811690617536aed666dd01cb914 /svx | |
parent | 3d264450989cecdc59a2e64f46a0328432ba0d08 (diff) |
fixes for "loplugin:constantparam in unotools/"
which only compiled because bool converts to char in C++, sigh.
Change-Id: I710bdd78bd93255635189da8e9751bff741a75a2
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/ctredlin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/dialog/ctredlin.cxx b/svx/source/dialog/ctredlin.cxx index ba71974d236a..839159ec8809 100644 --- a/svx/source/dialog/ctredlin.cxx +++ b/svx/source/dialog/ctredlin.cxx @@ -985,7 +985,7 @@ void SvxTPFilter::DeactivatePage() pRedlinTable->SetFilterComment(IsComment()); utl::SearchParam aSearchParam( m_pEdComment->GetText(), - utl::SearchParam::SRCH_REGEXP,false,false,false ); + utl::SearchParam::SRCH_REGEXP,false ); pRedlinTable->SetCommentParams(&aSearchParam); |