diff options
| author | Jordan Wiens <github@psifertex.com> | 2025-11-10 12:51:31 -0500 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2025-11-10 20:48:22 -0500 |
| commit | 0418561000622602146864421599964744262557 (patch) | |
| tree | 5e4be390ca03aa9b661bef7ea177b75275ff79a3 /ui/memorymap.h | |
| parent | db7506ab8288cdbf0a47c40e654c7e8d1a6d0757 (diff) | |
Revert various table view changes
They were not tested in time and we will address their bugs after the release
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 34753b40..44bd0195 100644 --- a/ui/memorymap.h +++ b/ui/memorymap.h @@ -17,7 +17,6 @@ #include "uitypes.h" #include "fontsettings.h" #include "viewframe.h" -#include "tableviewbase.h" /*! @@ -173,13 +172,14 @@ class BINARYNINJAUIAPI SegmentWidget : public QWidget Q_OBJECT BinaryViewRef m_data; - TableViewBase* m_table; + QTableView* 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; - TableViewBase* m_table; + QTableView* m_table; SectionModel* m_model; QSortFilterProxyModel* m_proxyModel; std::mutex m_updateMutex; |
