1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
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

16 lines
410 B
Plaintext

--- 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;
}