diff options
| author | Glenn Smith <glenn@vector35.com> | 2022-11-14 11:17:45 -0500 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2022-11-14 11:17:45 -0500 |
| commit | 60d3b2710fe19562575807aba006987b4629295e (patch) | |
| tree | 777c18cb2d35a1fc53ba019e62fcbacc1041d325 /ui/stringsview.h | |
| parent | 9912e2bdbc73c4984b94c1f8854ad7b960f5b252 (diff) | |
Revert "Show filtered/total count in search"
This reverts commit 78a4c923fe3fd5790e03e2c963e0a519d8c2b93b.
Diffstat (limited to 'ui/stringsview.h')
| -rw-r--r-- | ui/stringsview.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ui/stringsview.h b/ui/stringsview.h index 35a7b73a..100a496f 100644 --- a/ui/stringsview.h +++ b/ui/stringsview.h @@ -77,7 +77,6 @@ class BINARYNINJAUIAPI StringsListModel : public QAbstractItemModel, public Bina size_t getFilteredStringCount() const { return m_filteredByOptions; } size_t getStringCount() const { return m_strings.size(); } - size_t getUnfilteredStringCount() const { return m_allStrings.size(); } void toggleIncludeStringsOverlappingCode() { m_includeStringsOverlappingCode = !m_includeStringsOverlappingCode; }; void toggleIncludeOnlyReferenced() { m_includeOnlyReferenced = !m_includeOnlyReferenced; }; @@ -90,9 +89,6 @@ class BINARYNINJAUIAPI StringsListModel : public QAbstractItemModel, public Bina bool getIncludeStringsOverlappingCode() const { return m_includeStringsOverlappingCode; }; bool getIncludeOnlyReferenced() const { return m_includeOnlyReferenced; }; bool getIncludeOnlyFromCurrentFunction() const { return m_includeOnlyFromCurrentFunction; }; - -Q_SIGNALS: - void updateCount(); }; /*! |
