diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-08-18 22:31:19 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-08-18 22:31:19 -0500 |
commit | aa767cc26534f374c00dc35038a38f0d146f0d06 (patch) | |
tree | dc3427c50ab4cd6656b95743eb441607b97c9fd5 /unotools/inc | |
parent | b5d1380f3a0c88fff40c9a7134e373f11ea03b9d (diff) |
WaE parameter shadow member
Change-Id: I231e41771e81f7e6f2939468e6b2175f2bc10101
Diffstat (limited to 'unotools/inc')
-rw-r--r-- | unotools/inc/unotools/textsearch.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unotools/inc/unotools/textsearch.hxx b/unotools/inc/unotools/textsearch.hxx index dd34f09d6dde..42a9e2738a35 100644 --- a/unotools/inc/unotools/textsearch.hxx +++ b/unotools/inc/unotools/textsearch.hxx @@ -55,7 +55,7 @@ private: String sSrchStr; // the search string String sReplaceStr; // the replace string - SearchType eSrchType; // search normal/regular/LevDist + SearchType m_eSrchType; // search normal/regular/LevDist int m_bWordOnly : 1; // used by normal search int m_bSrchInSel : 1; // search only in the selection @@ -92,7 +92,7 @@ public: const String& GetSrchStr() const { return sSrchStr; } const String& GetReplaceStr() const { return sReplaceStr; } - SearchType GetSrchType() const { return eSrchType; } + SearchType GetSrchType() const { return m_eSrchType; } int IsCaseSensitive() const { return m_bCaseSense; } int IsSrchInSelection() const { return m_bSrchInSel; } @@ -101,7 +101,7 @@ public: void SetSrchStr( const String& rStr ) { sSrchStr = rStr; } void SetReplaceStr( const String& rStr ) { sReplaceStr = rStr; } - void SetSrchType( SearchType eType ) { eSrchType = eType; } + void SetSrchType( SearchType eType ) { m_eSrchType = eType; } void SetCaseSensitive( int bFlag ) { m_bCaseSense = bFlag; } void SetSrchInSelection( int bFlag ) { m_bSrchInSel = bFlag; } |