diff options
| author | Rusty Wagner <rusty@vector35.com> | 2020-05-28 19:37:36 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2020-05-29 23:59:09 -0400 |
| commit | c5ae680e93164baf7499ac6822ab0621a5af24d6 (patch) | |
| tree | a675a7cc47f613ac4924daba8acced8e21119d56 /ui/viewframe.h | |
| parent | 13b7a030ad88730d4fde7dfbe27f6d0b0ae65084 (diff) | |
Update to Qt 5.15
Diffstat (limited to 'ui/viewframe.h')
| -rw-r--r-- | ui/viewframe.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/viewframe.h b/ui/viewframe.h index 04a13fc1..dea74b11 100644 --- a/ui/viewframe.h +++ b/ui/viewframe.h @@ -70,8 +70,8 @@ public: virtual BinaryViewRef getData() = 0; virtual uint64_t getCurrentOffset() = 0; - virtual void getSelectionOffsets(uint64_t& begin, uint64_t& end); - virtual void getSelectionForInfo(uint64_t& begin, uint64_t& end); + virtual BNAddressRange getSelectionOffsets(); + virtual BNAddressRange getSelectionForInfo(); virtual bool navigate(uint64_t offset) = 0; virtual bool navigateToFunction(FunctionRef func, uint64_t offset); virtual bool goToReference(FunctionRef func, uint64_t source, uint64_t target); @@ -202,7 +202,7 @@ public: QString getCurrentView(); QString getCurrentDataType(); uint64_t getCurrentOffset(); - void getSelectionOffsets(uint64_t& begin, uint64_t& end); + BNAddressRange getSelectionOffsets(); View* getCurrentViewInterface() const { return View::getViewFromWidget(m_view); } QWidget* getCurrentWidget() const { return m_view; } |
