summaryrefslogtreecommitdiff
path: root/include/unotools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-01-03 09:08:52 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-01-03 10:38:42 +0100
commit1b666235f6b0b0f0b13f473bf3b639f4f5f0b12f (patch)
tree27d954769f796bc5fcac78c51447b9d2336f5a5e /include/unotools
parent15d9087ff1e495e234b2cf073329c3358abb4dc0 (diff)
loplugin:singlevalfields improve copy constructor check
Change-Id: Id1e7fbecd9e9f816553d2e678c3f1b7890fc4db8 Reviewed-on: https://gerrit.libreoffice.org/47293 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/unotools')
-rw-r--r--include/unotools/textsearch.hxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/unotools/textsearch.hxx b/include/unotools/textsearch.hxx
index b7b3250253af..5571fca7c15f 100644
--- a/include/unotools/textsearch.hxx
+++ b/include/unotools/textsearch.hxx
@@ -101,14 +101,9 @@ private:
sal_uInt32 m_cWildEscChar; // wildcard escape character
- bool m_bWordOnly : 1; // used by normal search
- bool m_bSrchInSel : 1; // search only in the selection
bool m_bCaseSense : 1;
bool m_bWildMatchSel : 1; // wildcard pattern must match entire selection
- // asian flags - used for the transliteration
- TransliterationFlags nTransliterationFlags;
-
public:
SearchParam( const OUString &rText,
SearchType eSrchType,
@@ -125,14 +120,10 @@ public:
SearchType GetSrchType() const { return m_eSrchType; }
bool IsCaseSensitive() const { return m_bCaseSense; }
- bool IsSrchInSelection() const { return m_bSrchInSel; }
- bool IsSrchWordOnly() const { return m_bWordOnly; }
bool IsWildMatchSel() const { return m_bWildMatchSel; }
// signed return for API use
sal_Int32 GetWildEscChar() const { return static_cast<sal_Int32>(m_cWildEscChar); }
-
- TransliterationFlags GetTransliterationFlags() const { return nTransliterationFlags; }
};
// For use in SAL_DEBUG etc. Output format not guaranteed to be stable.