From 7ea92df546c8595ff571787b17d57c08fb06e916 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 8 Mar 2020 12:32:17 +0100 Subject: Remove redundant PuglEventClose This is identical to PuglEventAny. --- pugl/pugl.h | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'pugl/pugl.h') diff --git a/pugl/pugl.h b/pugl/pugl.h index 7ec1d9e..64d25cb 100644 --- a/pugl/pugl.h +++ b/pugl/pugl.h @@ -260,17 +260,6 @@ typedef struct { int count; ///< Number of expose events to follow } PuglEventExpose; -/** - Window close event. - - This event is sent when the window is to be closed, for example when the - user clicks the close button. -*/ -typedef struct { - PuglEventType type; ///< #PUGL_CLOSE - PuglEventFlags flags; ///< Bitwise OR of #PuglEventFlag values -} PuglEventClose; - /** Key press or release event. @@ -408,7 +397,6 @@ typedef union { PuglEventButton button; ///< #PUGL_BUTTON_PRESS, #PUGL_BUTTON_RELEASE PuglEventConfigure configure; ///< #PUGL_CONFIGURE PuglEventExpose expose; ///< #PUGL_EXPOSE - PuglEventClose close; ///< #PUGL_CLOSE PuglEventKey key; ///< #PUGL_KEY_PRESS, #PUGL_KEY_RELEASE PuglEventText text; ///< #PUGL_TEXT PuglEventCrossing crossing; ///< #PUGL_ENTER_NOTIFY, #PUGL_LEAVE_NOTIFY -- cgit v1.2.1