From c493a5a70b092fae3fd10b26500ce8a6ea9f2f65 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Thu, 16 Mar 2000 17:42:52 +0000 Subject: [PATCH] iFix typo git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@6294 72102866-910b-0410-8b05-ffd578937521 --- Headers/gnustep/gui/NSResponder.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Headers/gnustep/gui/NSResponder.h b/Headers/gnustep/gui/NSResponder.h index 0798dbac9..9d3806490 100644 --- a/Headers/gnustep/gui/NSResponder.h +++ b/Headers/gnustep/gui/NSResponder.h @@ -53,15 +53,15 @@ * not change during the views lifetime - if it does, the view must * be sure to change the flag accordingly. */ - unsigned flipped_view: 1; - unsigned has_subviews: 1; /* The view has subviews. */ - unsigned has_currects: 1; /* The view has cursor rects. */ - unsigned has_trkrects: 1; /* The view has tracking rects. */ - unsigned has_draginfo: 1; /* View/window has drag types. */ - unsigned opaque_view: 1; /* For views whose opacity may */ + unsigned flipped_view:1; + unsigned has_subviews:1; /* The view has subviews. */ + unsigned has_currects:1; /* The view has cursor rects. */ + unsigned has_trkrects:1; /* The view has tracking rects. */ + unsigned has_draginfo:1; /* View/window has drag types. */ + unsigned opaque_view:1; /* For views whose opacity may */ /* change to keep track of it. */ - unsigned valid_rects: 1; /* Some cursor rects may be ok. */ - unsigned needs_display: 1; /* Window/view needs display. */ + unsigned valid_rects:1; /* Some cursor rects may be ok. */ + unsigned needs_display:1; /* Window/view needs display. */ } _rFlags; }