From: Woochan Lee Date: Wed, 14 Dec 2016 10:59:11 +0000 (+0900) Subject: [UTC][ui-viewmgr][Non-ACR][Fix viewmgr build error] X-Git-Tag: Public_Final_RC8~29^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f5f717341b6ae5c01f414a28f64637850f4398ff;p=test%2Ftct%2Fnative%2Fapi.git [UTC][ui-viewmgr][Non-ACR][Fix viewmgr build error] Change-Id: Id98313f360ba640210fc0f0af2317ee81acf1034 --- diff --git a/src/utc/ui-viewmgr/utc-ui-viewmgr.c b/src/utc/ui-viewmgr/utc-ui-viewmgr.c index eeaf9914a..a0165e67a 100644 --- a/src/utc/ui-viewmgr/utc-ui-viewmgr.c +++ b/src/utc/ui-viewmgr/utc-ui-viewmgr.c @@ -2425,7 +2425,7 @@ int utc_ui_viewmgr_popup_activate_p(void) assert(view); ui_view_set_transition_style(view, "none"); - assert_eq(ui_view_set_event_cb(view2, UI_VIEW_EVENT_LOAD, view2_load_cb, NULL), UI_VIEWMGR_ERROR_NONE); + assert_eq(ui_view_set_event_cb(view, UI_VIEW_EVENT_LOAD, view2_load_cb, NULL), UI_VIEWMGR_ERROR_NONE); ui_viewmgr_push_view(view); popup = ui_popup_create(view); @@ -2493,7 +2493,7 @@ int utc_ui_viewmgr_popup_deactivate_p(void) assert(view); ui_view_set_transition_style(view, "none"); - assert_eq(ui_view_set_event_cb(view2, UI_VIEW_EVENT_LOAD, view2_load_cb, NULL), UI_VIEWMGR_ERROR_NONE); + assert_eq(ui_view_set_event_cb(view, UI_VIEW_EVENT_LOAD, view2_load_cb, NULL), UI_VIEWMGR_ERROR_NONE); ui_viewmgr_push_view(view); popup = ui_popup_create(view); @@ -2565,7 +2565,7 @@ int utc_ui_viewmgr_popup_get_activated_p(void) assert(view); ui_view_set_transition_style(view, "none"); - assert_eq(ui_view_set_event_cb(view2, UI_VIEW_EVENT_LOAD, view2_load_cb, NULL), UI_VIEWMGR_ERROR_NONE); + assert_eq(ui_view_set_event_cb(view, UI_VIEW_EVENT_LOAD, view2_load_cb, NULL), UI_VIEWMGR_ERROR_NONE); ui_viewmgr_push_view(view); popup = ui_popup_create(view);