From d786919f3e5ff41043bf4b2ce72482ab37888c7e Mon Sep 17 00:00:00 2001 From: devilhorns Date: Mon, 8 Aug 2011 19:15:04 +0000 Subject: [PATCH] Ecore_X: Remove check for damage extension version. (we don't check version in xlib, so don't check it here). git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@62212 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/ecore_x/xcb/ecore_xcb_damage.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/ecore_x/xcb/ecore_xcb_damage.c b/src/lib/ecore_x/xcb/ecore_xcb_damage.c index 899f0d4..d2b80e4 100644 --- a/src/lib/ecore_x/xcb/ecore_xcb_damage.c +++ b/src/lib/ecore_x/xcb/ecore_xcb_damage.c @@ -42,8 +42,7 @@ _ecore_xcb_damage_finalize(void) reply = xcb_damage_query_version_reply(_ecore_xcb_conn, cookie, NULL); if (reply) { - if (reply->major_version >= XCB_DAMAGE_MAJOR_VERSION) - _damage_avail = EINA_TRUE; + _damage_avail = EINA_TRUE; free(reply); } -- 2.7.4