From 65d2f045cac7b185e1bf55caa8886e5c37889d78 Mon Sep 17 00:00:00 2001 From: devilhorns Date: Mon, 8 Aug 2011 19:15:41 +0000 Subject: [PATCH] Ecore_X: Remove check for shape extension version. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@62213 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/ecore_x/xcb/ecore_xcb_shape.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/lib/ecore_x/xcb/ecore_xcb_shape.c b/src/lib/ecore_x/xcb/ecore_xcb_shape.c index 526742a..0025c81 100644 --- a/src/lib/ecore_x/xcb/ecore_xcb_shape.c +++ b/src/lib/ecore_x/xcb/ecore_xcb_shape.c @@ -37,10 +37,7 @@ _ecore_xcb_shape_finalize(void) reply = xcb_shape_query_version_reply(_ecore_xcb_conn, cookie, NULL); if (reply) { - if ((reply->major_version >= XCB_SHAPE_MAJOR_VERSION) && - (reply->minor_version >= XCB_SHAPE_MINOR_VERSION)) - _shape_avail = EINA_TRUE; - + _shape_avail = EINA_TRUE; free(reply); } -- 2.7.4