From 4c4f3821b0cf014db4a1e6a64cda2dcd0333b5d1 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Tue, 5 Nov 2013 09:29:44 +0900 Subject: [PATCH] test_popup.c: Removed unused array. --- legacy/elementary/src/bin/test_popup.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/legacy/elementary/src/bin/test_popup.c b/legacy/elementary/src/bin/test_popup.c index 74a439aa53..40a0267592 100644 --- a/legacy/elementary/src/bin/test_popup.c +++ b/legacy/elementary/src/bin/test_popup.c @@ -21,20 +21,6 @@ _popup_close_cb(void *data, Evas_Object *obj EINA_UNUSED, evas_object_del(data); } -#define POPUP_POINT_MAX 9 -static Evas_Coord_Point _popup_point[POPUP_POINT_MAX] = -{ - { 40, 50 }, - { 80, 100 }, - { 120, 150 }, - { 160, 200 }, - { 500, 9999 }, // excess y - { 9999, 500 }, // excess x - { -10, 50 }, // negative x - { 40, -100 }, // negative y - { 0, 0 } // zero -}; - static void _g_popup_response_cb(void *data, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)