aboutsummaryrefslogtreecommitdiff
path: root/x11-toolkits/iv/files/patch-bn
diff options
context:
space:
mode:
Diffstat (limited to 'x11-toolkits/iv/files/patch-bn')
-rw-r--r--x11-toolkits/iv/files/patch-bn16
1 files changed, 16 insertions, 0 deletions
diff --git a/x11-toolkits/iv/files/patch-bn b/x11-toolkits/iv/files/patch-bn
new file mode 100644
index 000000000000..85ecc768315d
--- /dev/null
+++ b/x11-toolkits/iv/files/patch-bn
@@ -0,0 +1,16 @@
+--- src/lib/IV-2_6/control.c.orig Tue Dec 28 22:48:52 1999
++++ src/lib/IV-2_6/control.c Tue Dec 28 22:49:19 1999
+@@ -154,10 +154,12 @@
+ */
+
+ boolean Control::IsGrabbing(Interactor* i) {
++ ControlState* c;
++
+ if (i == this) {
+ return true;
+ }
+- for (ControlState* c = state_; c != nil; c = c->Next()) {
++ for (c = state_; c != nil; c = c->Next()) {
+ if (c->IsView(i)) {
+ return true;
+ }