diff options
-rw-r--r-- | include/gui/window.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/gui/window.h b/include/gui/window.h index c7e12cf..6ccf00a 100644 --- a/include/gui/window.h +++ b/include/gui/window.h | |||
@@ -9,6 +9,8 @@ | |||
9 | * The famous OS | 9 | * The famous OS |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include "group.h" | ||
13 | |||
12 | /** | 14 | /** |
13 | * Type: ClickHandler | 15 | * Type: ClickHandler |
14 | * Type of functions that handle mouse's clicks. | 16 | * Type of functions that handle mouse's clicks. |
@@ -37,7 +39,8 @@ typedef struct { | |||
37 | */ | 39 | */ |
38 | typedef struct { | 40 | typedef struct { |
39 | int width, height; | 41 | int width, height; |
40 | Component *components; | 42 | Group *group_buttons; |
43 | Group *group_images; | ||
41 | } Window; | 44 | } Window; |
42 | 45 | ||
43 | /** | 46 | /** |