diff options
| author | Glenn Smith <glenn@vector35.com> | 2024-05-06 01:35:28 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2024-05-06 01:35:28 -0400 |
| commit | 8545938549657567771421066113647027189369 (patch) | |
| tree | f2205a5f47aca5369f42ea189735e8c527d860a1 /ui/linearview.h | |
| parent | fe5045fec38f06d1bb16b9f052dda79dfab6b4ef (diff) | |
Use a flags enum for address offset display
Diffstat (limited to 'ui/linearview.h')
| -rw-r--r-- | ui/linearview.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/linearview.h b/ui/linearview.h index b15f124e..aee26547 100644 --- a/ui/linearview.h +++ b/ui/linearview.h @@ -478,7 +478,7 @@ public: void setContrast(HexEditorHighlightContrast mode); void toggleOption(BNDisassemblyOption option); - void setAddressMode(BNDisassemblyAddressMode mode); + void setAddressMode(std::optional<BNDisassemblyAddressMode> mode, std::optional<bool> hex, std::optional<bool> withName); void setDisplayedFileName(); virtual bool goToReference(FunctionRef func, uint64_t source, uint64_t target) override; |
