summaryrefslogtreecommitdiff
path: root/sw/source/core/edit
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2016-02-24 22:37:57 +0100
committerEike Rathke <erack@redhat.com>2016-02-24 22:42:05 +0100
commit21edff2a37c9c22d200df2638e31f7ff3afe85b6 (patch)
tree8b3ded0d95c55ddf739e4baf71d5726fa79d80ab /sw/source/core/edit
parenteb3e47dbf798103d09bb8f3461959726e917a75f (diff)
let SvxSearchItem use SearchOptions2
And all those places that interface to SvxSearchItem. Change-Id: I08915824a596cd0f247a89f44e4684cd22b98082
Diffstat (limited to 'sw/source/core/edit')
-rw-r--r--sw/source/core/edit/edtox.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/sw/source/core/edit/edtox.cxx b/sw/source/core/edit/edtox.cxx
index 36af137ef033..d52205a968e1 100644
--- a/sw/source/core/edit/edtox.cxx
+++ b/sw/source/core/edit/edtox.cxx
@@ -17,7 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#include <com/sun/star/util/SearchOptions.hpp>
+#include <com/sun/star/util/SearchOptions2.hpp>
+#include <com/sun/star/util/SearchAlgorithms2.hpp>
#include <com/sun/star/util/SearchFlags.hpp>
#include <com/sun/star/i18n/TransliterationModules.hpp>
#include <comphelper/string.hxx>
@@ -314,12 +315,14 @@ void SwEditShell::ApplyAutoMark()
sal_Int32 nSrchFlags = SearchFlags::LEV_RELAXED;
- SearchOptions aSearchOpt(
+ SearchOptions2 aSearchOpt(
SearchAlgorithms_ABSOLUTE, nSrchFlags,
"", "",
SvtSysLocale().GetLanguageTag().getLocale(),
nLEV_Other, nLEV_Longer, nLEV_Shorter,
- nTransliterationFlags );
+ nTransliterationFlags,
+ SearchAlgorithms2::ABSOLUTE,
+ '\\' );
while( !rStrm.GetError() && !rStrm.IsEof() )
{