From 29200c9c1f851fbb3caac256b1b059b0f22ffa7d Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 4 May 2015 18:53:01 -0400 Subject: [PATCH] express: Move row_color_simple_create function prototype Signed-off-by: Chris Michael --- src/bin/grid.h | 4 ---- src/bin/private.h | 3 +++ 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/bin/grid.h b/src/bin/grid.h index 82c83b5..2023005 100644 --- a/src/bin/grid.h +++ b/src/bin/grid.h @@ -183,10 +183,6 @@ void _grid_resize(Evas_Object *obj, int nw, int nh); void _grid_text_append(Evas_Object *obj, const char *txt, int len, Row_Color *color); void _grid_nicklen_set(Evas_Object *obj, int len); -/* Creates a Row_Color struct with the forground color passed in - * and no overrides, this is enough for most cases */ -Row_Color *_row_color_simple_create(int fg_primary_color); - #define GRID_CELLS(SD, X, Y) \ SD->cells[X + (((Y + SD->circular_offset) % SD->h) * SD->w)] diff --git a/src/bin/private.h b/src/bin/private.h index d5e6c14..b4cd995 100644 --- a/src/bin/private.h +++ b/src/bin/private.h @@ -73,3 +73,6 @@ struct _Row_Color int bg_primary_color; }; +/* Creates a Row_Color struct with the forground color passed in + * and no overrides, this is enough for most cases */ +Row_Color *_row_color_simple_create(int fg_primary_color);