summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHyerim Kim <rimi.kim@samsung.com>2017-04-20 14:34:34 +0900
committerHyerim Kim <rimi.kim@samsung.com>2017-04-20 14:43:02 +0900
commit3b02641b37a8323392c11a2e9c5a7d5f43e4fd3e (patch)
tree2943e30f34c32b3799d28c7d81d60227b081de60
parent2d2bec0fe98d5ca4947cf4346f4f991d117d387d (diff)
downloadair_home-3b02641b37a8323392c11a2e9c5a7d5f43e4fd3e.tar.gz
air_home-3b02641b37a8323392c11a2e9c5a7d5f43e4fd3e.tar.bz2
air_home-3b02641b37a8323392c11a2e9c5a7d5f43e4fd3e.zip
Change-Id: Ifa2a2c06ad7108c86288577c3095df189d4ef84c Signed-off-by: Hyerim Kim <rimi.kim@samsung.com>
-rwxr-xr-xsrc/view/view_user_edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/view_user_edit.c b/src/view/view_user_edit.c
index 4e42bae..6ed9983 100755
--- a/src/view/view_user_edit.c
+++ b/src/view/view_user_edit.c
@@ -361,7 +361,7 @@ static void _add_icon_list(struct _priv *priv)
}
elm_ctxpopup_horizontal_set(ctxpopup, EINA_TRUE);
elm_ctxpopup_auto_hide_disabled_set(ctxpopup, EINA_TRUE);
- evas_object_resize(ctxpopup, 812,348);
+ evas_object_resize(ctxpopup, 812, 348);
evas_object_smart_callback_add(ctxpopup, "dismissed", _dismissed, priv);
ly = utils_add_layout(ctxpopup, GRP_USER_EDIT_ICON_LIST, false, NULL);
@@ -417,7 +417,7 @@ static void _entry_text_changed_cb(void *data, Evas_Object *obj, void *event_inf
int length = strlen(text);
char temp[2] = {0, };
- if (text != NULL && length > 0) {
+ if (length > 0) {
strncpy(temp, text, 1);
temp[1] = '\0';
} else {