aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/radio.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gwin/radio.h')
-rw-r--r--src/gwin/radio.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gwin/radio.h b/src/gwin/radio.h
index eb7ee719..e13962c7 100644
--- a/src/gwin/radio.h
+++ b/src/gwin/radio.h
@@ -27,7 +27,7 @@
/**
* @brief The Event Type for a Radio Event
*/
-#define GEVENT_GWIN_RADIO (GEVENT_GWIN_FIRST+3)
+#define GEVENT_GWIN_RADIO (GEVENT_GWIN_CTRL_FIRST+3)
/**
* @brief A Button Event
@@ -35,11 +35,11 @@
*/
typedef struct GEventGWinRadio {
GEventType type; // The type of this event (GEVENT_GWIN_RADIO)
- GHandle radio; // The radio button that has been depressed
- uint16_t group; // The group for this radio button
+ GHandle gwin; // The radio button that has been depressed
#if GWIN_WIDGET_TAGS
WidgetTag tag; // The radio tag
#endif
+ uint16_t group; // The group for this radio button
} GEventGWinRadio;
/**