summaryrefslogtreecommitdiffstats
path: root/src/box.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-15 13:20:11 +0100
committerDavid Robillard <d@drobilla.net>2020-12-15 18:32:12 +0100
commit4295f103d71d947e3ed92731e648ba409d3664ac (patch)
tree868aa0b684edc5f64400721188901da6b7c6269b /src/box.c
parent93fee4579d013ba36d1eedc273fc2d9385d76e19 (diff)
downloadganv-4295f103d71d947e3ed92731e648ba409d3664ac.tar.gz
ganv-4295f103d71d947e3ed92731e648ba409d3664ac.tar.bz2
ganv-4295f103d71d947e3ed92731e648ba409d3664ac.zip
Clean up includes
Diffstat (limited to 'src/box.c')
-rw-r--r--src/box.c22
1 files changed, 14 insertions, 8 deletions
diff --git a/src/box.c b/src/box.c
index 4ee8e29..01814d1 100644
--- a/src/box.c
+++ b/src/box.c
@@ -13,17 +13,23 @@
* with Ganv. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <math.h>
-#include <string.h>
-
-#include <cairo.h>
+#include "boilerplate.h"
+#include "color.h"
+#include "ganv-private.h"
+#include "gettext.h"
#include "ganv/box.h"
+#include "ganv/item.h"
+#include "ganv/node.h"
+#include "ganv/types.h"
-#include "./boilerplate.h"
-#include "./color.h"
-#include "./gettext.h"
-#include "./ganv-private.h"
+#include <cairo.h>
+#include <glib-object.h>
+#include <glib.h>
+#include <gtk/gtk.h>
+
+#include <math.h>
+#include <string.h>
static const double STACKED_OFFSET = 4.0;