From c8a9209d77a896bf49227e5aeccd54e91ccf29cc Mon Sep 17 00:00:00 2001 From: xHire Date: Sat, 25 Oct 2008 14:11:06 +0200 Subject: Changed style of the code to the K&R standard --- src/widget/widget_image.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'src/widget/widget_image.h') diff --git a/src/widget/widget_image.h b/src/widget/widget_image.h index 86cf6bc..081fbda 100644 --- a/src/widget/widget_image.h +++ b/src/widget/widget_image.h @@ -1,15 +1,14 @@ #ifndef WIDGET_IMAGE_H -#define WIDGET_IMAGE_H +# define WIDGET_IMAGE_H -#include "main.h" -#include "interface.h" -#include "widget.h" +# include "main.h" +# include "interface.h" +# include "widget.h" -typedef struct widget_image -{ - image_t *image; +typedef struct widget_image { + image_t *image; } widget_image_t; extern widget_t *newWidgetImage(int x, int y, image_t * image); -- cgit v1.2.3