summaryrefslogtreecommitdiff
path: root/src/gui/group.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/group.c')
-rw-r--r--src/gui/group.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/gui/group.c b/src/gui/group.c
index af9abac..7f5adcd 100644
--- a/src/gui/group.c
+++ b/src/gui/group.c
@@ -1,10 +1,8 @@
1#include <stdlib.h> 1#include "gui/group.h"
2#include <gui/group.h>
3#include <common/mem.h>
4#include <assert.h> 2#include <assert.h>
5#include <gui/component.h> 3#include <stdlib.h>
6#include "MLV/MLV_shape.h" 4#include <MLV/MLV_shape.h>
7#include "MLV/MLV_window.h" 5#include "common/mem.h"
8 6
9void group_print(Component *parameterSelf) { 7void group_print(Component *parameterSelf) {
10 assert(parameterSelf != NULL); 8 assert(parameterSelf != NULL);
@@ -84,4 +82,3 @@ void group_add_component(Group *group, Component *component) {
84 82
85 } 83 }
86} 84}
87