diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-06-22 10:46:11 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-06-22 10:48:15 +0200 |
commit | 47b15fa9bcff970fa76b66cc1aa6f24c1721b537 (patch) | |
tree | 8119f4d9d01346b343334928d5c57fe8c77d961c | |
parent | bddf3bba1fa13b57a69f2bd5f7c7f96bb945066d (diff) |
loplugin: fix alignment
I used the example of IMPL_LINK, line 1264 of this same file
Change-Id: Ibf5021c1b9784a52b20a80489e4b25a4e04a0595
-rw-r--r-- | svx/source/dialog/srchdlg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/srchdlg.cxx b/svx/source/dialog/srchdlg.cxx index 5cfb9928b514..b88cd1f95d9d 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 ) |