elementary: Fix test_colorclass function

The test_colorclass function (and prototype) were incorrect in that
they did not have the proper function parameters defined. This lead to
a warning when building elementary tests.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-11-30 09:45:12 -05:00
parent a77cee43d3
commit 5ee3227847
2 changed files with 2 additions and 2 deletions

View File

@ -268,7 +268,7 @@ void test_win_dialog(void *data, Evas_Object *obj, void *event_info);
void test_box_disable(void *data, Evas_Object *obj, void *event_info);
void test_layout_disable(void *data, Evas_Object *obj, void *event_info);
void test_colorclass(void);
void test_colorclass(void *data, Evas_Object *obj, void *event_info);
Evas_Object *win, *tbx; // TODO: refactoring
void *tt;

View File

@ -5,7 +5,7 @@
void
test_colorclass()
test_colorclass(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
{
Evas_Object *win, *cc;