From: Hyuk Lee Date: Thu, 29 Oct 2015 04:56:27 +0000 (+0900) Subject: Fix : remove the utilX APIs X-Git-Tag: submit/tizen_mobile/20151029.051733^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7ba1760cd7e48ba88c74b82eafab57be7d99347b;p=platform%2Fcore%2Fconnectivity%2Fbt-syspopup.git Fix : remove the utilX APIs It is unnecessary in Tizen 3.x based on wayland Change-Id: I27f03f5373edfa958692e64777342e163d7c9f6b Signed-off-by: Hyuk Lee --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c3a7f3..8ef9214 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,7 +43,6 @@ pkg_check_modules(pkgs REQUIRED aul efl-assist edbus - utilX vconf) ELSEIF("$ENV{CFLAGS}" MATCHES "-DTIZEN_MOBILE") pkg_check_modules(pkgs REQUIRED diff --git a/packaging/org.tizen.bt-syspopup.spec b/packaging/org.tizen.bt-syspopup.spec index abca62f..fc64b41 100644 --- a/packaging/org.tizen.bt-syspopup.spec +++ b/packaging/org.tizen.bt-syspopup.spec @@ -38,7 +38,6 @@ BuildRequires: pkgconfig(capi-system-device) BuildRequires: pkgconfig(capi-media-player) BuildRequires: pkgconfig(deviced) BuildRequires: pkgconfig(capi-network-bluetooth) -BuildRequires: pkgconfig(utilX) BuildRequires: pkgconfig(vconf) BuildRequires: cmake diff --git a/src/bt-syspopup-w.c b/src/bt-syspopup-w.c index 218f212..6462295 100644 --- a/src/bt-syspopup-w.c +++ b/src/bt-syspopup-w.c @@ -25,7 +25,6 @@ #include #include #include -#include #include #include #include @@ -175,8 +174,12 @@ static void __bluetooth_set_win_level(Evas_Object *parent) BT_DBG("Setting window type"); ecore_x_netwm_window_type_set(xwin, ECORE_X_WINDOW_TYPE_NOTIFICATION); + + /* utilx APIs are unnecessary in Tizen 3.x based on wayland */ +#if 0 utilx_set_system_notification_level(ecore_x_display_get(), xwin, UTILX_NOTIFICATION_LEVEL_HIGH); +#endif } }