summaryrefslogtreecommitdiff
path: root/view/kernelcache/ui/symboltable.h
diff options
context:
space:
mode:
Diffstat (limited to 'view/kernelcache/ui/symboltable.h')
-rw-r--r--view/kernelcache/ui/symboltable.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/view/kernelcache/ui/symboltable.h b/view/kernelcache/ui/symboltable.h
index 28d07199..64a20010 100644
--- a/view/kernelcache/ui/symboltable.h
+++ b/view/kernelcache/ui/symboltable.h
@@ -19,6 +19,7 @@ Q_OBJECT
SymbolTableView* m_parent;
QFont m_font;
std::string m_filter;
+ FilterOptions m_filterOptions;
std::vector<KernelCacheAPI::CacheSymbol> m_preparedSymbols{};
// These are the symbols we actually use
std::vector<KernelCacheAPI::CacheSymbol> m_modelSymbols{};
@@ -32,7 +33,7 @@ public:
QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
void sort(int column, Qt::SortOrder order) override;
void updateSymbols(std::vector<KernelCacheAPI::CacheSymbol>&& symbols);
- void setFilter(std::string text);
+ void setFilter(const std::string& text, FilterOptions options);
const KernelCacheAPI::CacheSymbol& symbolAt(int row) const;
};
@@ -94,7 +95,7 @@ public:
return m_model->symbolAt(row);
}
- void setFilter(const std::string& filter) override;
+ void setFilter(const std::string& filter, FilterOptions options) override;
};