summaryrefslogtreecommitdiff
path: root/ui/flowgraphwidget.h
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2025-01-22 15:22:10 -0500
committerJosh Ferrell <josh@vector35.com>2025-01-24 11:10:51 -0500
commit56877b1c87c3f75eeae1f04f4d09e5086ebe2b1b (patch)
tree901aaef9964e3588168d7358a35dfdbbe463ee97 /ui/flowgraphwidget.h
parent2a74060264ce1bdab1cc33e08965e6d7429be1e8 (diff)
Add CursorPosition::operator==
Diffstat (limited to 'ui/flowgraphwidget.h')
-rw-r--r--ui/flowgraphwidget.h3
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;
};