freebsd-ports/x11-toolkits/iv/files/patch-bn
Seigo Tanimura bf57334ca0 - Update to 3.2a.
- The maintainer is now a committer.

Reviewed by:	Kim Culhan <kimc@w8hd.org>
2000-01-25 02:35:00 +00:00

15 lines
410 B
Text

--- src/lib/IV-2_6/control.c.org Wed Feb 12 05:48:58 1992
+++ src/lib/IV-2_6/control.c Sun Jan 23 18:48:18 2000
@@ -154,10 +154,11 @@
*/
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;
}