diff options
| author | Brian Potchik <brian@vector35.com> | 2020-11-21 17:40:24 -0500 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2020-11-21 17:40:24 -0500 |
| commit | b24b2a197a2f39ef0f2c5e28253dd55f3c1fffb4 (patch) | |
| tree | 8dc7bc4d9ccc8a8d9aba695dac82065946033f9b /ui/disassemblyview.h | |
| parent | 0eeb07fad8abc805ad6a9c4e5a982ebb7e00b995 (diff) | |
Move IL view type access to ViewFrame.
Diffstat (limited to 'ui/disassemblyview.h')
| -rw-r--r-- | ui/disassemblyview.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/disassemblyview.h b/ui/disassemblyview.h index e689ce00..ed7c5f30 100644 --- a/ui/disassemblyview.h +++ b/ui/disassemblyview.h @@ -46,8 +46,8 @@ public: virtual StatusBarWidget* getStatusBarWidget() override; - BNFunctionGraphType getILViewType() { return m_ilViewType; }; - void setILViewType(BNFunctionGraphType ilViewType); + virtual BNFunctionGraphType getILViewType() override { return m_ilViewType; }; + virtual void setILViewType(BNFunctionGraphType ilViewType) override; void setOption(BNDisassemblyOption option, bool state = true); void toggleOption(BNDisassemblyOption option); |
