//__apply_changeable_ui();
evas_object_show(win_main);
- DBG("create win_main(%x)", win_main);
+ DBG("create win_main(%p)", win_main);
return win_main;
}
void terminate_win(Evas_Object *win_main)
{
- DBG("remove win_main(%x)", win_main);
+ DBG("remove win_main(%p)", win_main);
evas_object_hide(win_main);
evas_object_smart_callback_del(win_main, "delete,request", popup_resp);
elm_win_keygrab_unset(win_main, "XF86PowerOff", 0, 0);
time_t time = g_noti_configs[event].timestamp;
noti_err = notification_set_time(noti_h, time);
if (noti_err != NOTIFICATION_ERROR_NONE) {
- ERR("fail to notification_set_time(%d) err(%d)", time, noti_err);
+ ERR("fail to notification_set_time(%ld) err(%d)", time, noti_err);
goto Error;
} else {
- INFO("Success to notification_set_time[%d]", time);
+ INFO("Success to notification_set_time[%ld]", time);
}
}
}