<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns="http://tizen.org/ns/packages" package="@PACKAGE_NAME@" version="1.1.9" install-location="internal-only">
+<manifest xmlns="http://tizen.org/ns/packages" package="@PACKAGE_NAME@" version="1.1.10" install-location="internal-only">
<label>Simple Menu-screen</label>
<author email="jinny.yoon@samsung.com" href="www.samsung.com">Jin Yoon</author>
<author email="yjoo93.park@samsung.com" href="www.samsung.com">Youngjoo Park</author>
Name: org.tizen.menu-screen
Summary: An utility library of the menu screen
-Version: 1.1.9
+Version: 1.1.10
Release: 1.1
Group: TO_BE/FILLED_IN
License: Flora Software License
ret_if(NULL == ai);
if (!ai->image) {
- if (0 != access(ai->icon, R_OK)) {
+ if (ai->icon && 0 == access(ai->icon, R_OK)) {
+ ;
+ } else {
_E("Failed to access to [%s]", ai->icon);
if (ai->icon) free(ai->icon);
+
ai->icon = strdup(DEFAULT_ICON);
if (!ai->icon) _E("Critical! strdup error");
}
static void _uninstall_up_cb(void *item, Evas_Object *obj, const char* emission, const char* source)
{
Evas_Object *win;
- Evas_Object *scroller;
ret_if(mouse_is_scrolling());
ret_if(NULL == win);
_D("Uninstall button is up");
- scroller = evas_object_data_get(item, "scroller");
obj = evas_object_data_get(obj, "evas_object");
ret_if(NULL == obj);
ret_if(NULL == evas_object_data_get(obj, "removing"));