[Libreoffice-commits] core.git: svx/source

Julien Nabet serval2412 at yahoo.fr
Sat Jun 22 01:48:36 PDT 2013


 svx/source/dialog/srchdlg.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 47b15fa9bcff970fa76b66cc1aa6f24c1721b537
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Sat Jun 22 10:46:11 2013 +0200

    loplugin: fix alignment
    
    I used the example of IMPL_LINK, line 1264 of this same file
    
    Change-Id: Ibf5021c1b9784a52b20a80489e4b25a4e04a0595

diff --git a/svx/source/dialog/srchdlg.cxx b/svx/source/dialog/srchdlg.cxx
index 5cfb992..b88cd1f 100644
--- a/svx/source/dialog/srchdlg.cxx
+++ b/svx/source/dialog/srchdlg.cxx
@@ -2249,8 +2249,8 @@ void SvxSearchDialog::SaveToModule_Impl()
     if( !pSearchItem->IsUseAsianOptions())
         nFlags &= (TransliterationModules_IGNORE_CASE |
                    TransliterationModules_IGNORE_WIDTH );
-        if (GetCheckBoxValue(m_pIgnoreDiacritics))
-            nFlags |= TransliterationModulesExtra::ignoreDiacritics_CTL;
+    if (GetCheckBoxValue(m_pIgnoreDiacritics))
+        nFlags |= TransliterationModulesExtra::ignoreDiacritics_CTL;
     pSearchItem->SetTransliterationFlags( nFlags );
 
     if ( !bWriter )


More information about the Libreoffice-commits mailing list