From 78c35cd654461f5248c136b6048116f046c523ae Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Thu, 19 Nov 2015 18:33:51 +0900 Subject: [PATCH] Fix build error in X11 environment temporarily Change-Id: I24d5879085af6ad30b59e1281a05f15a00a22df2 --- scl/gwes/efl/sclwindows-efl.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scl/gwes/efl/sclwindows-efl.cpp b/scl/gwes/efl/sclwindows-efl.cpp index b95052a..3969b4c 100644 --- a/scl/gwes/efl/sclwindows-efl.cpp +++ b/scl/gwes/efl/sclwindows-efl.cpp @@ -200,6 +200,7 @@ CSCLWindowsImplEfl::create_window(const sclwindow parent, SclWindowContext *wind ecore_wl_window_rotation_geometry_set(elm_win_wl_window_get(win), rotation_values_EFL[ROTATION_90_CCW], 0, 0, new_width, new_height); #else + /* ecore_x_e_window_rotation_geometry_set(elm_win_xwindow_get(win), rotation_values_EFL[ROTATION_0], 0, 0, new_width, new_height); ecore_x_e_window_rotation_geometry_set(elm_win_xwindow_get(win), @@ -208,7 +209,7 @@ CSCLWindowsImplEfl::create_window(const sclwindow parent, SclWindowContext *wind rotation_values_EFL[ROTATION_180], 0, 0, new_width, new_height); ecore_x_e_window_rotation_geometry_set(elm_win_xwindow_get(win), rotation_values_EFL[ROTATION_90_CCW], 0, 0, new_width, new_height); - + */ #ifndef APPLY_WINDOW_MANAGER_CHANGE ecore_x_icccm_name_class_set(elm_win_xwindow_get(static_cast(win)), "ISF Popup", "ISF"); @@ -278,6 +279,7 @@ CSCLWindowsImplEfl::create_magnifier_window(const sclwindow parent, SclWindowCon ecore_wl_window_rotation_geometry_set(elm_win_wl_window_get(win), rotation_values_EFL[ROTATION_90_CCW], 0, 0, height, width); #else + /* ecore_x_e_window_rotation_geometry_set(elm_win_xwindow_get(win), rotation_values_EFL[ROTATION_0], 0, 0, width, height); ecore_x_e_window_rotation_geometry_set(elm_win_xwindow_get(win), @@ -286,7 +288,7 @@ CSCLWindowsImplEfl::create_magnifier_window(const sclwindow parent, SclWindowCon rotation_values_EFL[ROTATION_180], 0, 0, width, height); ecore_x_e_window_rotation_geometry_set(elm_win_xwindow_get(win), rotation_values_EFL[ROTATION_90_CCW], 0, 0, height, width); - + */ #ifndef APPLY_WINDOW_MANAGER_CHANGE ecore_x_icccm_name_class_set(elm_win_xwindow_get(static_cast(win)), "Key Magnifier", "ISF"); Ecore_X_Atom ATOM_WINDOW_EFFECT_ENABLE = 0; -- 2.7.4