diff options
author | pacien | 2018-01-09 02:15:21 +0100 |
---|---|---|
committer | pacien | 2018-01-09 02:15:21 +0100 |
commit | 5beabe1a69e6dda3e139e95d24c3e9c8e027990a (patch) | |
tree | 6a4eb07cca4c6edfbfaddeac59fed99e4230f201 /src/gui/group.c | |
parent | 5980fa86c1fc90849102bbc24679423f978e2a50 (diff) | |
download | morpher-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.c | 11 |
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 | ||
9 | void group_print(Component *parameterSelf) { | 7 | void 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 | |||