diff options
| author | xHire <xhire@tuxportal.cz> | 2009-05-22 18:39:29 +0200 |
|---|---|---|
| committer | xHire <xhire@tuxportal.cz> | 2009-05-26 01:10:58 +0200 |
| commit | 78aa43a47bdcb3d88d267d8b65377b12d75a017b (patch) | |
| tree | 842398fb20e97c9012e8dd791643a0b06dcbebbf /src/widget/widget_image.h | |
| parent | f3ccf7e671c1ce8e2ac3dd791bcfa60d8c5d9c0b (diff) | |
Rectified the coding style in widget .h files
Diffstat (limited to 'src/widget/widget_image.h')
| -rw-r--r-- | src/widget/widget_image.h | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/src/widget/widget_image.h b/src/widget/widget_image.h index 2af63e6..ad7104d 100644 --- a/src/widget/widget_image.h +++ b/src/widget/widget_image.h @@ -1,19 +1,17 @@ - #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; } widget_image_t; -extern widget_t *wid_image_new(int x, int y, image_t * image); -extern void wid_image_draw(widget_t * p); -extern void wid_image_event(widget_t * p); -extern void wid_image_destroy(widget_t * p); +extern widget_t *wid_image_new(int x, int y, image_t *image); +extern void wid_image_draw(widget_t *p); +extern void wid_image_event(widget_t *p); +extern void wid_image_destroy(widget_t *p); -#endif +#endif /* WIDGET_IMAGE_H */ |