diff options
| author | Brian Potchik <brian@vector35.com> | 2022-11-03 16:52:25 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2022-11-10 16:19:13 -0500 |
| commit | f647755655df27af2e5b55af12e19d06acb76930 (patch) | |
| tree | 24c66b9c866e3dcfb1390fdba0996767523adced /ui/hexeditor.h | |
| parent | d67d5b63f3a17d10b7b7ca722b7192220447209a (diff) | |
Add ability to quiesce views not active in a ViewFrame.
Diffstat (limited to 'ui/hexeditor.h')
| -rw-r--r-- | ui/hexeditor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/hexeditor.h b/ui/hexeditor.h index b971a1cb..1a485be9 100644 --- a/ui/hexeditor.h +++ b/ui/hexeditor.h @@ -33,6 +33,8 @@ class BINARYNINJAUIAPI HexEditor : explicit HexEditor(BinaryViewRef data, ViewFrame* view, uint64_t startAddr = 0); virtual ~HexEditor(); + virtual void notifyRefresh() override; + virtual bool canAssemble() override { return true; } virtual bool canCompile() override { return true; } @@ -195,7 +197,6 @@ class BINARYNINJAUIAPI HexEditor : bool m_insertMode; QString m_status; QTimer* m_cursorTimer; - QTimer* m_updateTimer; Qt::KeyboardModifiers m_ctrl, m_command; RenderContext m_render; @@ -226,7 +227,6 @@ class BINARYNINJAUIAPI HexEditor : void scrollBarMoved(int value); void scrollBarAction(int action); void cursorTimerEvent(); - void updateTimerEvent(); }; /*! |
