summaryrefslogtreecommitdiff
path: root/include/unotools/textsearch.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-03 09:21:43 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-06 10:55:59 +0000
commit871a41cfd043e1c7391ca0b8b3c5e60bd799025c (patch)
tree395c13351fc57350dbf7bb14371b3553b8d08868 /include/unotools/textsearch.hxx
parente47db97d2ced9178456eebaece11118158dce406 (diff)
loplugin:unusedmethods unotools
Change-Id: Ieb73b50471263212285b9c3883c082477c1ad656 Reviewed-on: https://gerrit.libreoffice.org/16729 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/unotools/textsearch.hxx')
-rw-r--r--include/unotools/textsearch.hxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/unotools/textsearch.hxx b/include/unotools/textsearch.hxx
index d13ec3f4d419..76e53df7690d 100644
--- a/include/unotools/textsearch.hxx
+++ b/include/unotools/textsearch.hxx
@@ -86,26 +86,12 @@ public:
bool IsSrchInSelection() const { return m_bSrchInSel; }
bool IsSrchWordOnly() const { return m_bWordOnly; }
- void SetSrchStr( const OUString& rStr ) { sSrchStr = rStr; }
- void SetReplaceStr( const OUString& rStr ) { sReplaceStr = rStr; }
- void SetSrchType( SearchType eType ) { m_eSrchType = eType; }
-
- void SetCaseSensitive( int bFlag ) { m_bCaseSense = bFlag; }
- void SetSrchInSelection( int bFlag ) { m_bSrchInSel = bFlag; }
- void SetSrchWordOnly( int bFlag ) { m_bWordOnly = bFlag; }
-
bool IsSrchRelaxed() const { return bLEV_Relaxed; }
int GetLEVOther() const { return nLEV_OtherX; }
int GetLEVShorter() const { return nLEV_ShorterY; }
int GetLEVLonger() const { return nLEV_LongerZ; }
- void SetSrchRelaxed( int bFlag ) { bLEV_Relaxed = bFlag; }
- void SetLEVOther( int nValue ) { nLEV_OtherX = nValue; }
- void SetLEVShorter( int nValue ) { nLEV_ShorterY = nValue; }
- void SetLEVLonger( int nValue ) { nLEV_LongerZ = nValue; }
-
long GetTransliterationFlags() const { return nTransliterationFlags; }
- void SetTransliterationFlags( long nValue ) { nTransliterationFlags = nValue; }
};
// Utility class for searching a substring in a string.