[Libreoffice-commits] core.git: svx/source
Faisal M. Al-Otaibi
fmalotaibi at kacst.edu.sa
Wed Apr 16 02:06:14 PDT 2014
svx/source/tbxctrls/tbunosearchcontrollers.cxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit 251fd06de2c7bd2e46fd257d848acbebb93e1fab
Author: Faisal M. Al-Otaibi <fmalotaibi at kacst.edu.sa>
Date: Wed Apr 16 11:55:04 2014 +0300
fdo#77123: Add Ignore Kashida to quick find
if the CTL enabled the ignore kashida option will work
when you use the quick find toolbar.
Change-Id: I6dd9d4b3fa96c0d1c47a044e813c4062b8678ea2
diff --git a/svx/source/tbxctrls/tbunosearchcontrollers.cxx b/svx/source/tbxctrls/tbunosearchcontrollers.cxx
index 6df2de7..2309224 100644
--- a/svx/source/tbxctrls/tbunosearchcontrollers.cxx
+++ b/svx/source/tbxctrls/tbunosearchcontrollers.cxx
@@ -110,6 +110,7 @@ void impl_executeSearch( const css::uno::Reference< css::uno::XComponentContext
sal_Int32 nFlags = 0;
nFlags |= (!aMatchCase ? static_cast<int>(com::sun::star::i18n::TransliterationModules_IGNORE_CASE) : 0);
nFlags |= (aCTLOptions.IsCTLFontEnabled() ? com::sun::star::i18n::TransliterationModulesExtra::IGNORE_DIACRITICS_CTL:0 );
+ nFlags |= (aCTLOptions.IsCTLFontEnabled() ? com::sun::star::i18n::TransliterationModulesExtra::IGNORE_KASHIDA_CTL:0 );
lArgs[3].Value <<= nFlags;
lArgs[4].Name = OUString(SEARCHITEM_COMMAND);
lArgs[4].Value <<= (sal_Int16)(aFindAll ?
More information about the Libreoffice-commits
mailing list