common: remove warnings 55/17055/1
authorTaeyoung Kim <ty317.kim@samsung.com>
Mon, 3 Mar 2014 09:24:31 +0000 (18:24 +0900)
committerTaeyoung Kim <ty317.kim@samsung.com>
Mon, 3 Mar 2014 09:26:58 +0000 (18:26 +0900)
- Unused functions are removed
- Function types are fixed to correct types

Signed-off-by: Taeyoung Kim <ty317.kim@samsung.com>
Change-Id: I11f140fa5421ffaefa47b62f6422d81aabd745e6

lowbatt-popup/src/lowbatt.c
lowmem-popup/src/lowmem.c
mmc-popup/src/mmc.c
poweroff-popup/src/poweroff.c

index 6b52d96..747015b 100755 (executable)
@@ -49,12 +49,6 @@ syspopup_handler handler = {
        .def_timeout_fn = mytimeout
 };
 
-/* App Life cycle funtions */
-static void win_del(void *data, Evas_Object * obj, void *event)
-{
-       popup_terminate();
-}
-
 /* Cleanup objects to avoid mem-leak */
 void lowbatt_cleanup(struct appdata *ad)
 {
index 64e897c..2ea8d42 100755 (executable)
@@ -59,12 +59,6 @@ struct text_part {
        char *msgid;
 };
 
-/* App Life cycle funtions */
-static void win_del(void *data, Evas_Object *obj, void *event)
-{
-       popup_terminate();
-}
-
 /* Cleanup objects to avoid mem-leak */
 void lowmem_cleanup(struct appdata *ad)
 {
@@ -272,6 +266,10 @@ static int app_reset(bundle *b, void *data)
                return 0;
        }
        ret = syspopup_create(b, &handler, ad->win_main, ad);
+       if (ret < 0) {
+               _E("Failed to create popup(%d)", ret);
+               return ret;
+       }
        evas_object_show(ad->win_main);
 
        memnoti_level = bundle_get_val(b, "_MEM_NOTI_");
index fe5e346..7e2e96f 100755 (executable)
@@ -33,6 +33,8 @@
 
 static int option = -1;
 
+int mmc_popup_start(void *data);
+
 int myterm(bundle *b, void *data)
 {
        return 0;
@@ -48,12 +50,6 @@ syspopup_handler handler = {
        .def_timeout_fn = mytimeout
 };
 
-/* App Life cycle funtions */
-static void win_del(void *data, Evas_Object * obj, void *event)
-{
-       popup_terminate();
-}
-
 /* Terminate noti handler */
 static int app_terminate(void *data)
 {
@@ -86,18 +82,23 @@ static int app_reset(bundle *b, void *data)
 {
        struct appdata *ad = data;
        char *opt = NULL;
+       int ret;
 
-       opt = bundle_get_val(b, "_SYSPOPUP_CONTENT_");
+       opt = (char *)bundle_get_val(b, "_SYSPOPUP_CONTENT_");
        if (!strcmp(opt,"mounterr"))
                option = MOUNT_ERROR_ACT;
-       
+
        if (syspopup_has_popup(b)) {
                syspopup_reset(b);
        } else {
                syspopup_create(b, &handler, ad->win_main, ad);
                evas_object_show(ad->win_main);
                /* Start Main UI */
-               mmc_popup_start((void *)ad);
+               ret = mmc_popup_start((void *)ad);
+               if (ret < 0) {
+                       _E("Failed to show popup (%d)", ret);
+                       return ret;
+               }
        }
 
        return 0;
@@ -128,7 +129,7 @@ void mmc_cleanup(struct appdata *ad)
                evas_object_del(ad->layout_main);
 }
 
-void mmc_response(void *data)
+void mmc_response(void *data, Evas_Object * obj, void *event_info)
 {
        if (data != NULL)
                mmc_cleanup(data);
index 9b7f6eb..21e2dae 100755 (executable)
@@ -46,12 +46,6 @@ syspopup_handler handler = {
        .def_timeout_fn = mytimeout
 };
 
-/* App Life cycle funtions */
-static void win_del(void *data, Evas_Object * obj, void *event)
-{
-       popup_terminate();
-}
-
 /* Cleanup objects to avoid mem-leak */
 void poweroff_cleanup(struct appdata *ad)
 {
@@ -76,7 +70,6 @@ void poweroff_response_yes_cb(void *data, Evas_Object * obj, void *event_info)
 
        if (sysman_call_predef_action(PREDEF_POWEROFF, 0) == -1) {
                _E("System-popup : failed to request poweroff to system_server");
-               system("poweroff");
        }
 }