From 04a926ec1e79eba4bda31e19ef58aed79e10ff46 Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Mon, 10 Nov 2014 21:49:47 +0100 Subject: parse_color: Use bool return-type, nuke PColor for Color* --- src/yawa.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/yawa.h') diff --git a/src/yawa.h b/src/yawa.h index e2b5d1b..38f15a4 100644 --- a/src/yawa.h +++ b/src/yawa.h @@ -5,13 +5,13 @@ typedef struct { int r, g, b, a; -} Color, *PColor; +} Color; typedef enum { Full, Fill, Center, Tile } ImageMode; int set_root_atoms (Pixmap pixmap); -int parse_color (char *arg, PColor c, int a); +bool parse_color (char *arg, Color *c, int a); int load_image (ImageMode mode, const char *arg, int rootW, int rootH, int alpha, Imlib_Image rootimg); -- cgit v1.2.3-54-g00ecf