From 8cf9486fdd91de98d799129ae6e11480b09aceae Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 7 Jan 2018 18:39:39 +0100 Subject: [PATCH] add int type includes to cc class --- src/gui/components/cc.h | 1 + src/gui/components/cc_frm.h | 1 + src/gui/components/cc_types.h | 1 + 3 files changed, 3 insertions(+) diff --git a/src/gui/components/cc.h b/src/gui/components/cc.h index edbadbada..ea2660602 100644 --- a/src/gui/components/cc.h +++ b/src/gui/components/cc.h @@ -29,6 +29,7 @@ Basic attributes and member functions for component sub classes #ifndef __N_COMPONENTS__ #define __N_COMPONENTS__ +#include /* crazy "u_int8_t" instead of plain uint8_t */ #include "cc_types.h" #include "cc_base.h" #include "cc_extra.h" diff --git a/src/gui/components/cc_frm.h b/src/gui/components/cc_frm.h index ca8daa31f..fc57bb54b 100644 --- a/src/gui/components/cc_frm.h +++ b/src/gui/components/cc_frm.h @@ -25,6 +25,7 @@ #define __CC_FORM_H__ +#include /* crazy "u_int8_t" instead of plain uint8_t */ #include "config.h" #include "cc_base.h" #include "cc_item.h" diff --git a/src/gui/components/cc_types.h b/src/gui/components/cc_types.h index 1faa2e789..02710c6a8 100644 --- a/src/gui/components/cc_types.h +++ b/src/gui/components/cc_types.h @@ -26,6 +26,7 @@ #ifndef __CC_TYPES__ #define __CC_TYPES__ +#include #include #include #include