summaryrefslogtreecommitdiff
path: root/src/gui/group.c
diff options
context:
space:
mode:
authorpacien2018-01-09 02:15:21 +0100
committerpacien2018-01-09 02:15:21 +0100
commit5beabe1a69e6dda3e139e95d24c3e9c8e027990a (patch)
tree6a4eb07cca4c6edfbfaddeac59fed99e4230f201 /src/gui/group.c
parent5980fa86c1fc90849102bbc24679423f978e2a50 (diff)
downloadmorpher-5beabe1a69e6dda3e139e95d24c3e9c8e027990a.tar.gz
Sources and import cleanup
Signed-off-by: pacien <pacien.trangirard@pacien.net>
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