From a5a6dfdb5cbd91d305bfdef2636809c4e36711d0 Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Tue, 12 Jan 2021 16:52:22 +0900 Subject: [PATCH] Remove unnecessary code Change-Id: Idb92e7506dace81aefa4a8ce6ad3bb9a804e9ae4 Signed-off-by: Jihoon Kim --- ism/demos/isf_demo_efl.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ism/demos/isf_demo_efl.cpp b/ism/demos/isf_demo_efl.cpp index 45efcf3..44d3cba 100644 --- a/ism/demos/isf_demo_efl.cpp +++ b/ism/demos/isf_demo_efl.cpp @@ -212,16 +212,11 @@ static Evas_Object* create_win (const char *name) { Evas_Object *eo = NULL; const int rots[4] = { 0, 90, 180, 270 }; - int w, h; eo = elm_win_util_standard_add (name, name); if (eo != NULL) { evas_object_smart_callback_add (eo, "delete,request", win_del, NULL); - - elm_win_screen_size_get (eo, NULL, NULL, &w, &h); - LOGD ("resize window as %d x %d", w, h); - evas_object_resize (eo, w, h); } if (elm_win_wm_rotation_supported_get (eo)) { -- 2.7.4