diff options
| author | Brian Potchik <brian@vector35.com> | 2020-12-31 19:15:40 -0500 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2020-12-31 19:15:40 -0500 |
| commit | 6473e803d822abdabe150ec9ad3b3038eef45de3 (patch) | |
| tree | b3bf1e19a3042cfb1595e0528bd5b95cc8bfffb5 | |
| parent | ab3eafca72e8c8ed3d17615f295cc245f833117f (diff) | |
Add basic navigateToViewLocation support for linear view.
| -rw-r--r-- | ui/linearview.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/linearview.h b/ui/linearview.h index 7498bdef..b7365e47 100644 --- a/ui/linearview.h +++ b/ui/linearview.h @@ -299,8 +299,9 @@ public: virtual BasicBlockRef getCurrentBasicBlock() override; virtual ArchitectureRef getCurrentArchitecture() override; virtual size_t getCurrentILInstructionIndex() override; - virtual bool navigateToFunction(FunctionRef func, uint64_t pos) override; virtual bool navigate(uint64_t pos) override; + virtual bool navigateToFunction(FunctionRef func, uint64_t pos) override; + virtual bool navigateToViewLocation(const ViewLocation& viewLocation) override; virtual std::string getNavigationMode() override; virtual void setNavigationMode(std::string mode) override; |
