From b8b4a2bc9c5ab99f6deb2e66b558454aa8064abb Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Tue, 2 Feb 2010 09:06:14 +0000 Subject: [PATCH] wtf was that. of course it should be False!!!! SVN revision: 45799 --- legacy/ecore/src/lib/ecore_x/xlib/ecore_x_netwm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/ecore/src/lib/ecore_x/xlib/ecore_x_netwm.c b/legacy/ecore/src/lib/ecore_x/xlib/ecore_x_netwm.c index 016162997b..4ca18bfc1b 100644 --- a/legacy/ecore/src/lib/ecore_x/xlib/ecore_x_netwm.c +++ b/legacy/ecore/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); }