iFix typo

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@6294 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2000-03-16 17:42:52 +00:00
parent 80e278d3aa
commit c493a5a70b

View file

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