diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/yawa.c | 8 | ||||
-rw-r--r-- | src/yawa.h | 4 |
2 files changed, 6 insertions, 6 deletions
@@ -183,11 +183,11 @@ set_root_atoms (Pixmap pixmap) return 1; } -int -parse_color (char *hex, PColor c, int a) +bool +parse_color (char *hex, Color *c, int a) { if ((strlen(hex) != 7) && (strlen(hex) != 9)) - return 0; + return false; int len; if (strlen(hex) == 9) { @@ -226,7 +226,7 @@ parse_color (char *hex, PColor c, int a) c->a = a; } - return 1; + return true; } int @@ -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); |