diff options
| author | Josh Ferrell <josh@vector35.com> | 2025-01-22 15:22:10 -0500 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2025-01-24 11:10:51 -0500 |
| commit | 56877b1c87c3f75eeae1f04f4d09e5086ebe2b1b (patch) | |
| tree | 901aaef9964e3588168d7358a35dfdbbe463ee97 /ui/flowgraphwidget.h | |
| parent | 2a74060264ce1bdab1cc33e08965e6d7429be1e8 (diff) | |
Add CursorPosition::operator==
Diffstat (limited to 'ui/flowgraphwidget.h')
| -rw-r--r-- | ui/flowgraphwidget.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/flowgraphwidget.h b/ui/flowgraphwidget.h index e41c8586..b36c9043 100644 --- a/ui/flowgraphwidget.h +++ b/ui/flowgraphwidget.h @@ -82,10 +82,11 @@ class BINARYNINJAUIAPI FlowGraphWidget : size_t lineIndexForAddress; size_t tokenIndex; size_t characterIndex; - // Directly from QMouseEvent, not used in comparator + // Directly from QMouseEvent, not used in comparators int cursorX; int cursorY; + bool operator==(const CursorPosition& other) const; bool operator<(const CursorPosition& other) const; }; |
