Fix the build error for wayland 31/48231/1 accepted/tizen_mobile accepted/tizen_tv tizen accepted/tizen/mobile/20150917.041055 accepted/tizen/tv/20150917.041118 submit/tizen/20150916.141025 submit/tizen/20150917.014254 submit/tizen_common/20151229.144031 submit/tizen_common/20151229.154718 tizen_3.0.m2.a1_mobile_release tizen_3.0.m2.a1_tv_release
authorSung-jae Park <nicesj.park@samsung.com>
Wed, 16 Sep 2015 12:37:11 +0000 (21:37 +0900)
committerSung-jae Park <nicesj.park@samsung.com>
Wed, 16 Sep 2015 12:37:11 +0000 (21:37 +0900)
Change-Id: Ic9aa5c4c9ca5f56f18b387e92c3f161d13f6c53e

src/virtual_window_wayland.c

index 424d8cd..3a0b1ee 100644 (file)
@@ -691,7 +691,7 @@ static void ecore_evas_free_cb(Ecore_Evas *ee)
                evas_event_callback_del(info->e, EVAS_CALLBACK_RENDER_PRE, pre_render_cb);
        }
 
-       info->deleted = 1;
+       info->flags.field.deleted = 1;
        info->ee = NULL;
 }
 
@@ -732,16 +732,16 @@ PUBLIC Evas *widget_get_evas(const char *id)
        }
 
 #ifdef WIDGET_FEATURE_GBAR_SUPPORTED
-       info->is_gbar = is_gbar;
+       info->flags.field.is_gbar = is_gbar;
 #else
-       info->is_gbar = 0;
+       info->flags.field.is_gbar = 0;
 #endif /* WIDGET_FEATURE_GBAR_SUPPORTED */
 
        /**
         * Acquire a buffer for canvas.
         */
-       info->handle = widget_create_buffer(info->id, info->is_gbar,
-                       binder_widget_auto_align(),
+       info->handle = widget_create_buffer(info->id, info->flags.field.is_gbar,
+                       binder_widget_auto_align(info),
                        event_handler_cb, info);
 
        if (!info->handle) {