diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2021-06-28 15:54:51 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2021-06-30 17:20:54 -0400 |
| commit | 0d5ce53be355905aa9c1b3eae5c3ec8030613c7c (patch) | |
| tree | 5323b6085b375b7ac2fefe9c3d59b8769df64052 | |
| parent | 70be4645d30c8017524ae2b444ac7e0c0a8448a6 (diff) | |
support for section and segment offsets in copy menu
| -rw-r--r-- | ui/addressindicator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/addressindicator.h b/ui/addressindicator.h index fd9326fe..5b724d96 100644 --- a/ui/addressindicator.h +++ b/ui/addressindicator.h @@ -11,11 +11,12 @@ class BINARYNINJAUIAPI AddressIndicator: public MenuHelper Q_OBJECT uint64_t m_begin, m_end; + BinaryViewRef m_view; public: AddressIndicator(QWidget* parent); - void setOffsets(uint64_t begin, uint64_t end); + void setOffsets(uint64_t begin, uint64_t end, BinaryViewRef view); protected: virtual void showMenu(); |
