[Libreoffice-commits] core.git: sw/source
Miklos Vajna
vmiklos at collabora.co.uk
Wed May 27 00:04:25 PDT 2015
sw/source/core/crsr/findtxt.cxx | 36 ++++++++++++++++++------------------
1 file changed, 18 insertions(+), 18 deletions(-)
New commits:
commit bf9c96238e33f63922af35c0c77ceb83ff447d3e
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date: Wed May 27 09:02:52 2015 +0200
sw: prefix members of SwFindParaText
So that one can stop guessing if bSearchInNotes or bSearchNotes is the
member variable.
Change-Id: I8181c1943d6bc9c81383a0e5df6625db31b9e926
diff --git a/sw/source/core/crsr/findtxt.cxx b/sw/source/core/crsr/findtxt.cxx
index 741e307..3d28b6b 100644
--- a/sw/source/core/crsr/findtxt.cxx
+++ b/sw/source/core/crsr/findtxt.cxx
@@ -621,14 +621,14 @@ bool SwPaM::DoSearch( const SearchOptions& rSearchOpt, utl::TextSearch& rSText,
/// parameters for search and replace in text
struct SwFindParaText : public SwFindParas
{
- const SearchOptions& rSearchOpt;
- SwCursor& rCursor;
- utl::TextSearch aSText;
- bool bReplace;
- bool bSearchInNotes;
-
- SwFindParaText( const SearchOptions& rOpt, bool bSearchNotes, bool bRepl, SwCursor& rCrsr )
- : rSearchOpt( rOpt ), rCursor( rCrsr ), aSText( rOpt ), bReplace( bRepl ), bSearchInNotes( bSearchNotes )
+ const SearchOptions& m_rSearchOpt;
+ SwCursor& m_rCursor;
+ utl::TextSearch m_aSText;
+ bool m_bReplace;
+ bool m_bSearchInNotes;
+
+ SwFindParaText( const SearchOptions& rOpt, bool bSearchInNotes, bool bRepl, SwCursor& rCrsr )
+ : m_rSearchOpt( rOpt ), m_rCursor( rCrsr ), m_aSText( rOpt ), m_bReplace( bRepl ), m_bSearchInNotes( bSearchInNotes )
{}
virtual int Find( SwPaM* , SwMoveFn , const SwPaM*, bool bInReadOnly ) SAL_OVERRIDE;
virtual bool IsReplaceMode() const SAL_OVERRIDE;
@@ -642,15 +642,15 @@ SwFindParaText::~SwFindParaText()
int SwFindParaText::Find( SwPaM* pCrsr, SwMoveFn fnMove,
const SwPaM* pRegion, bool bInReadOnly )
{
- if( bInReadOnly && bReplace )
+ if( bInReadOnly && m_bReplace )
bInReadOnly = false;
- const bool bFnd = pCrsr->Find( rSearchOpt, bSearchInNotes, aSText, fnMove, pRegion, bInReadOnly );
+ const bool bFnd = pCrsr->Find( m_rSearchOpt, m_bSearchInNotes, m_aSText, fnMove, pRegion, bInReadOnly );
- if( bFnd && bReplace ) // replace string
+ if( bFnd && m_bReplace ) // replace string
{
// use replace method in SwDoc
- const bool bRegExp(SearchAlgorithms_REGEXP == rSearchOpt.algorithmType);
+ const bool bRegExp(SearchAlgorithms_REGEXP == m_rSearchOpt.algorithmType);
SwIndex& rSttCntIdx = pCrsr->Start()->nContent;
const sal_Int32 nSttCnt = rSttCntIdx.GetIndex();
// add to shell-cursor-ring so that the regions will be moved eventually
@@ -658,17 +658,17 @@ int SwFindParaText::Find( SwPaM* pCrsr, SwMoveFn fnMove,
if( bRegExp )
{
pPrev = const_cast<SwPaM*>(pRegion)->GetPrev();
- const_cast<SwPaM*>(pRegion)->GetRingContainer().merge( rCursor.GetRingContainer() );
+ const_cast<SwPaM*>(pRegion)->GetRingContainer().merge( m_rCursor.GetRingContainer() );
}
boost::scoped_ptr<OUString> pRepl( (bRegExp)
- ? ReplaceBackReferences( rSearchOpt, pCrsr ) : 0 );
+ ? ReplaceBackReferences( m_rSearchOpt, pCrsr ) : 0 );
bool const bReplaced =
- rCursor.GetDoc()->getIDocumentContentOperations().ReplaceRange(
+ m_rCursor.GetDoc()->getIDocumentContentOperations().ReplaceRange(
*pCrsr,
- (pRepl.get()) ? *pRepl : rSearchOpt.replaceString,
+ (pRepl.get()) ? *pRepl : m_rSearchOpt.replaceString,
bRegExp );
- rCursor.SaveTableBoxContent( pCrsr->GetPoint() );
+ m_rCursor.SaveTableBoxContent( pCrsr->GetPoint() );
if( bRegExp )
{
@@ -697,7 +697,7 @@ int SwFindParaText::Find( SwPaM* pCrsr, SwMoveFn fnMove,
bool SwFindParaText::IsReplaceMode() const
{
- return bReplace;
+ return m_bReplace;
}
sal_uLong SwCursor::Find( const SearchOptions& rSearchOpt, bool bSearchInNotes,
More information about the Libreoffice-commits
mailing list