diff options
| author | Alexander Khosrowshahi <alexk@vector35.com> | 2025-08-28 16:03:23 -0400 |
|---|---|---|
| committer | Jordan <github@psifertex.com> | 2025-10-24 11:48:53 -0400 |
| commit | 4e3ef2ce073efe0cf1c7b744e720202afe7e294e (patch) | |
| tree | 9ef816922564b6a5d917ca8f8b8cb9038526d57e /ui/memorymap.h | |
| parent | 8ffd2aa208552bcfef8d5436b62826d17f95ae86 (diff) | |
Add TableViewBase.h and base class QTableView uses in stringsview, memory map, searches, and tag types
Diffstat (limited to 'ui/memorymap.h')
| -rw-r--r-- | ui/memorymap.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/memorymap.h b/ui/memorymap.h index 44bd0195..34753b40 100644 --- a/ui/memorymap.h +++ b/ui/memorymap.h @@ -17,6 +17,7 @@ #include "uitypes.h" #include "fontsettings.h" #include "viewframe.h" +#include "tableviewbase.h" /*! @@ -172,14 +173,13 @@ class BINARYNINJAUIAPI SegmentWidget : public QWidget Q_OBJECT BinaryViewRef m_data; - QTableView* m_table; + TableViewBase* m_table; SegmentModel* m_model; QSortFilterProxyModel* m_proxyModel; std::mutex m_updateMutex; //void updateInfo(); void showContextMenu(const QPoint& point); - QMenu* createHeaderContextMenu(const QPoint& p); void restoreDefaults(); void addMemoryRegion(SegmentRef segment); @@ -251,7 +251,7 @@ class BINARYNINJAUIAPI SectionWidget : public QWidget Q_OBJECT BinaryViewRef m_data; - QTableView* m_table; + TableViewBase* m_table; SectionModel* m_model; QSortFilterProxyModel* m_proxyModel; std::mutex m_updateMutex; |
