summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2011-11-04 16:13:17 -0400
committerKohei Yoshida <kohei.yoshida@suse.com>2011-11-04 22:40:29 -0400
commit369d2726c7a43f53cafac21520fd0b307f478254 (patch)
tree439de7bd52216cd7643c059485e8b55a79ac193f /sc/inc
parentda798ecf7b6471df71e8169dbc637cc903469e7d (diff)
Do the simple string equality matching in ScQueryEntry instead.
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/queryparam.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/inc/queryparam.hxx b/sc/inc/queryparam.hxx
index 79330aea0932..f3d755c562fb 100644
--- a/sc/inc/queryparam.hxx
+++ b/sc/inc/queryparam.hxx
@@ -72,7 +72,8 @@ public:
// creates pSearchParam and pSearchText if necessary, always RegExp!
utl::TextSearch* GetSearchTextPtr( bool bCaseSens ) const;
- bool MatchByString(const rtl::OUString& rStr) const;
+ bool IsQueryStringEmpty() const;
+ bool MatchByString(const rtl::OUString& rStr, bool bCaseSens) const;
SC_DLLPUBLIC void SetQueryString(const rtl::OUString& rStr);
SC_DLLPUBLIC rtl::OUString GetQueryString() const;
void Clear();