summaryrefslogtreecommitdiff
path: root/unotools/source/i18n/textsearch.cxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-08-18 15:10:41 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-08-18 15:10:41 -0500
commitc6189b43f3103300dd03375a4bd6a5589708d8c9 (patch)
treeab858f0dc7838b3922b9932be5f6eec0fd4f8896 /unotools/source/i18n/textsearch.cxx
parentc1b73536343ae0a7b6dd940b1c8a01784c4d7a30 (diff)
WAE parameter shadow member
Change-Id: Icf41caa23ce9a548223da4613a199116641e7fe5
Diffstat (limited to 'unotools/source/i18n/textsearch.cxx')
-rw-r--r--unotools/source/i18n/textsearch.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/unotools/source/i18n/textsearch.cxx b/unotools/source/i18n/textsearch.cxx
index 05835970cc3e..13636b940d15 100644
--- a/unotools/source/i18n/textsearch.cxx
+++ b/unotools/source/i18n/textsearch.cxx
@@ -45,9 +45,9 @@ SearchParam::SearchParam( const String &rText,
sSrchStr = rText;
eSrchType = eType;
- bWordOnly = bWrdOnly;
- bSrchInSel = bSearchInSel;
- bCaseSense = bCaseSensitive;
+ m_bWordOnly = bWrdOnly;
+ m_bSrchInSel = bSearchInSel;
+ m_bCaseSense = bCaseSensitive;
nTransliterationFlags = 0;
@@ -64,9 +64,9 @@ SearchParam::SearchParam( const SearchParam& rParam )
sReplaceStr = rParam.sReplaceStr;
eSrchType = rParam.eSrchType;
- bWordOnly = rParam.bWordOnly;
- bSrchInSel = rParam.bSrchInSel;
- bCaseSense = rParam.bCaseSense;
+ m_bWordOnly = rParam.m_bWordOnly;
+ m_bSrchInSel = rParam.m_bSrchInSel;
+ m_bCaseSense = rParam.m_bCaseSense;
bLEV_Relaxed = rParam.bLEV_Relaxed;
nLEV_OtherX = rParam.nLEV_OtherX;