diff options
author | Benjamin Otte <otte@redhat.com> | 2018-03-20 22:30:04 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2018-03-21 00:43:28 +0100 |
commit | 5c7ee3a483f1fc59b60da0e8fafb33681bab507d (patch) | |
tree | 195a50314ca7552657a411cadfe5c4fbb5d4cc9d /gdk/gdkeventsprivate.h | |
parent | 4f87861c9a2a07659da49cec9cbeb0c30e6e06ff (diff) | |
download | gtk+-5c7ee3a483f1fc59b60da0e8fafb33681bab507d.tar.gz |
gdk: Remove unused count member from GdkEventExpose
Diffstat (limited to 'gdk/gdkeventsprivate.h')
-rw-r--r-- | gdk/gdkeventsprivate.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gdk/gdkeventsprivate.h b/gdk/gdkeventsprivate.h index b664f2706c..93f872ce22 100644 --- a/gdk/gdkeventsprivate.h +++ b/gdk/gdkeventsprivate.h @@ -70,10 +70,6 @@ struct _GdkEventAny * @send_event: %TRUE if the event was sent explicitly. * @area: bounding box of @region. * @region: the region that needs to be redrawn. - * @count: the number of contiguous %GDK_EXPOSE events following this one. - * The only use for this is “exposure compression”, i.e. handling all - * contiguous %GDK_EXPOSE events in one go, though GDK performs some - * exposure compression so this is not normally needed. * * Generated when all or part of a surface becomes visible and needs to be * redrawn. @@ -83,7 +79,6 @@ struct _GdkEventExpose GdkEventAny any; GdkRectangle area; cairo_region_t *region; - gint count; /* If non-zero, how many more events follow. */ }; /* |