summaryrefslogtreecommitdiffstats
path: root/svx/source/dialog/ctredlin.cxx
diff options
context:
space:
mode:
authorjp <jp@openoffice.org>2000-11-20 08:29:04 +0000
committerjp <jp@openoffice.org>2000-11-20 08:29:04 +0000
commitb59a1a81813bd049ff9ccdc1f0549a748a5849a0 (patch)
tree77f3a1c9e1ce3162078d22fc52d6accb7f6ea577 /svx/source/dialog/ctredlin.cxx
parentAdded: DataSupplier_Impl now obtains folder iterator from content object. (diff)
downloadcore-b59a1a81813bd049ff9ccdc1f0549a748a5849a0.tar.gz
core-b59a1a81813bd049ff9ccdc1f0549a748a5849a0.zip
must change: SearchText->TextSearch and use namespace
Diffstat (limited to 'svx/source/dialog/ctredlin.cxx')
-rw-r--r--svx/source/dialog/ctredlin.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/dialog/ctredlin.cxx b/svx/source/dialog/ctredlin.cxx
index 99c911a30d54..e7d82ebb0559 100644
--- a/svx/source/dialog/ctredlin.cxx
+++ b/svx/source/dialog/ctredlin.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ctredlin.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2000-10-24 12:20:14 $
+ * last change: $Author: jp $ $Date: 2000-11-20 09:29:04 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -436,13 +436,13 @@ void SvxRedlinTable::SetFilterComment(BOOL bFlag)
bComment=bFlag;
}
-void SvxRedlinTable::SetCommentParams( const SearchParam* pSearchPara )
+void SvxRedlinTable::SetCommentParams( const utl::SearchParam* pSearchPara )
{
if(pSearchPara!=NULL)
{
if(pCommentSearcher!=NULL) delete pCommentSearcher;
- pCommentSearcher=new SearchText(*pSearchPara, Application::GetAppInternational());
+ pCommentSearcher=new utl::TextSearch(*pSearchPara, LANGUAGE_SYSTEM );
}
}
@@ -1344,8 +1344,8 @@ void SvxTPFilter::DeactivatePage()
pRedlinTable->SetFilterComment(IsComment());
- SearchParam aSearchParam( aEdComment.GetText(),
- SearchParam::SRCH_REGEXP,FALSE,FALSE,FALSE );
+ utl::SearchParam aSearchParam( aEdComment.GetText(),
+ utl::SearchParam::SRCH_REGEXP,FALSE,FALSE,FALSE );
pRedlinTable->SetCommentParams(&aSearchParam);