diff options
author | con <qtc-committer@nokia.com> | 2009-07-13 14:48:45 +0200 |
---|---|---|
committer | con <qtc-committer@nokia.com> | 2009-07-13 14:50:32 +0200 |
commit | e38cec518b7481a77b909dac0aaef33cea2e543e (patch) | |
tree | ac20f42f35078a51215143f571bab65391b16941 /src/plugins/help/helpfindsupport.h | |
parent | 7c6a9b6d2ef0710f8ec965ea47774fb39fe75d2c (diff) | |
download | qt-creator-e38cec518b7481a77b909dac0aaef33cea2e543e.tar.gz |
Find implementations now tell what find flags are actually supported.
Diffstat (limited to 'src/plugins/help/helpfindsupport.h')
-rw-r--r-- | src/plugins/help/helpfindsupport.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/help/helpfindsupport.h b/src/plugins/help/helpfindsupport.h index 789c15a77d..ce57be8acb 100644 --- a/src/plugins/help/helpfindsupport.h +++ b/src/plugins/help/helpfindsupport.h @@ -50,6 +50,8 @@ public: bool isEnabled() const; bool supportsReplace() const { return false; } + IFindSupport::FindFlags supportedFindFlags() const; + void resetIncrementalSearch() {} void clearResults() {} QString currentFindString() const; @@ -76,6 +78,7 @@ public: bool isEnabled() const { return true; } bool supportsReplace() const { return false; } + IFindSupport::FindFlags supportedFindFlags() const; void resetIncrementalSearch() {} void clearResults() {} QString currentFindString() const; |