summaryrefslogtreecommitdiff
path: root/sw/source/ui/uno/unotxdoc.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/uno/unotxdoc.cxx')
-rw-r--r--sw/source/ui/uno/unotxdoc.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/sw/source/ui/uno/unotxdoc.cxx b/sw/source/ui/uno/unotxdoc.cxx
index 8f1f015936f1..43ee928fd08e 100644
--- a/sw/source/ui/uno/unotxdoc.cxx
+++ b/sw/source/ui/uno/unotxdoc.cxx
@@ -802,8 +802,10 @@ sal_Int32 SwXTextDocument::replaceAll(const Reference< util::XSearchDescriptor >
}
else
{
+ //todo/mba: assuming that notes should be omitted
+ BOOL bSearchInNotes = FALSE;
BOOL bCancel;
- nResult = pUnoCrsr->Find( aSearchOpt,
+ nResult = pUnoCrsr->Find( aSearchOpt, bSearchInNotes,
eStart, eEnd, bCancel,
(FindRanges)eRanges,
sal_True );
@@ -931,8 +933,10 @@ SwUnoCrsr* SwXTextDocument::FindAny(const Reference< util::XSearchDescriptor >
}
else
{
+ //todo/mba: assuming that notes should be omitted
+ BOOL bSearchInNotes = FALSE;
BOOL bCancel;
- nResult = (sal_Int32)pUnoCrsr->Find( aSearchOpt,
+ nResult = (sal_Int32)pUnoCrsr->Find( aSearchOpt, bSearchInNotes,
eStart, eEnd, bCancel,
(FindRanges)eRanges,
/*int bReplace =*/sal_False );