From 5964013ff6d59fa4fb35e3165845eb15f2c743d1 Mon Sep 17 00:00:00 2001 From: Jinwoo Nam Date: Thu, 6 Sep 2012 11:24:44 +0900 Subject: if ug create fail, call elm_exit. code cleanup --- client/ug-client.c | 29 ++++------------------------- 1 file changed, 4 insertions(+), 25 deletions(-) diff --git a/client/ug-client.c b/client/ug-client.c index a592f66..cbbe223 100755 --- a/client/ug-client.c +++ b/client/ug-client.c @@ -29,8 +29,6 @@ #include "ug-client.h" -#define POPUP_TITLE_MAX (128) - #ifdef LOG_TAG #undef LOG_TAG #endif @@ -99,29 +97,6 @@ static int rotate(enum appcore_rm m, void *data) return 0; } -static void close_popup(void *data, Evas_Object *obj, void *event_info) -{ - evas_object_del(obj); - elm_exit(); -} - -static void show_popup(Evas_Object *win, const char *name) -{ - Evas_Object *pu; - char buf[POPUP_TITLE_MAX]; - - if (!name || !win) - return; - - pu = elm_popup_add(win); - if (!pu) - return; - - evas_object_size_hint_weight_set(pu, EVAS_HINT_EXPAND, - EVAS_HINT_EXPAND); - evas_object_show(pu); -} - void layout_cb(ui_gadget_h ug, enum ug_mode mode, void *priv) { struct appdata *ad; @@ -326,6 +301,10 @@ static int app_reset(bundle *b, void *data) cbs.priv = ad; ad->ug = ug_create(NULL, ad->name, mode, service, &cbs); + if (ad->ug == NULL) { + LOGE("ug_create fail: %s\n", ad->name); + elm_exit(); + } return 0; } -- cgit v1.2.3