From: raster Date: Tue, 2 Feb 2010 09:06:14 +0000 (+0000) Subject: wtf was that. of course it should be False!!!! X-Git-Tag: build/2012-07-04.173327~2218 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=90dbc0c25d5bff8d86a16fdf25cc447f477c6f2c;p=profile%2Fivi%2Fecore.git wtf was that. of course it should be False!!!! git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@45799 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/ecore_x/xlib/ecore_x_netwm.c b/src/lib/ecore_x/xlib/ecore_x_netwm.c index 0161629..4ca18bf 100644 --- a/src/lib/ecore_x/xlib/ecore_x_netwm.c +++ b/src/lib/ecore_x/xlib/ecore_x_netwm.c @@ -1515,7 +1515,7 @@ ecore_x_screen_is_composited(int screen) char buf[32]; snprintf(buf, sizeof(buf), "_NET_WM_CM_S%i", screen); - if (atom == None) atom = XInternAtom(_ecore_x_disp, buf, True); + if (atom == None) atom = XInternAtom(_ecore_x_disp, buf, False); if (atom == None) return 0; win = XGetSelectionOwner(_ecore_x_disp, atom); @@ -1530,7 +1530,7 @@ ecore_x_screen_is_composited_set(int screen, Ecore_X_Window win) char buf[32]; snprintf(buf, sizeof(buf), "_NET_WM_CM_S%i", screen); - if (atom == None) atom = XInternAtom(_ecore_x_disp, buf, True); + if (atom == None) atom = XInternAtom(_ecore_x_disp, buf, False); if (atom == None) return; XSetSelectionOwner(_ecore_x_disp, atom, win, _ecore_x_event_last_time); }