aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/gwin_slider.h
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-11-03 10:51:23 +1000
committerinmarket <andrewh@inmarket.com.au>2018-11-03 10:51:23 +1000
commit7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d (patch)
tree95cf152ef65ff19c7b2515b427bbe86b92b611d0 /src/gwin/gwin_slider.h
parent8bd70d953bcd3e32ceb4e45a4e561c973726280a (diff)
downloaduGFX-7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d.tar.gz
uGFX-7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d.tar.bz2
uGFX-7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d.zip
For all source files update integer types to the new gI8 etc type names
Diffstat (limited to 'src/gwin/gwin_slider.h')
-rw-r--r--src/gwin/gwin_slider.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gwin/gwin_slider.h b/src/gwin/gwin_slider.h
index 0b11385b..4eb9ed41 100644
--- a/src/gwin/gwin_slider.h
+++ b/src/gwin/gwin_slider.h
@@ -36,7 +36,7 @@ typedef struct GEventGWinSlider {
#endif
int position;
- uint8_t action;
+ gU8 action;
#define GSLIDER_EVENT_SET 4 /* Slider position is set. This is the only event returned by default */
#define GSLIDER_EVENT_CANCEL 3 /* Slider position changing has been cancelled */
#define GSLIDER_EVENT_START 2 /* Slider position has started changing */
@@ -57,11 +57,11 @@ typedef struct GEventGWinSlider {
typedef struct GSliderObject {
GWidgetObject w;
#if GINPUT_NEED_TOGGLE
- uint16_t t_dn;
- uint16_t t_up;
+ gU16 t_dn;
+ gU16 t_up;
#endif
#if GINPUT_NEED_DIAL
- uint16_t dial;
+ gU16 dial;
#endif
gCoord dpos;
int min;