diff options
| author | Brian Potchik <brian@vector35.com> | 2025-04-19 14:21:58 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2025-04-19 14:21:58 -0400 |
| commit | 2b31504fcdedd68a94fbd6ad90d7d2967b46291a (patch) | |
| tree | e67922b8555e89e7d9dcaf7a5b93ff1aa196c10d /ui | |
| parent | 6ac52368ad598979afb22c2188c2858aaaa5bd7b (diff) | |
Fix crash when using kill in debugger.
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/featuremap.h | 3 | ||||
| -rw-r--r-- | ui/memorymap.h | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/ui/featuremap.h b/ui/featuremap.h index d21760ec..fb84165b 100644 --- a/ui/featuremap.h +++ b/ui/featuremap.h @@ -95,9 +95,6 @@ protected: virtual void paintEvent(QPaintEvent* event) override; void scrollTo(int x, int y, bool addHistoryEntry = false); - Q_SIGNALS: - void notifyThemeUpdated(); - private Q_SLOTS: void renderAnalysisData(); void updateThemeInternal(); diff --git a/ui/memorymap.h b/ui/memorymap.h index 27ec4cd9..f96f26c0 100644 --- a/ui/memorymap.h +++ b/ui/memorymap.h @@ -262,6 +262,7 @@ class BINARYNINJAUIAPI MemoryMapView : public QWidget, public View public: MemoryMapView(BinaryViewRef data, MemoryMapContainer* container); + virtual ~MemoryMapView(); BinaryViewRef getData() override { return m_data; } uint64_t getCurrentOffset() override; |
