wtf was that. of course it should be False!!!!

SVN revision: 45799
This commit is contained in:
Carsten Haitzler 2010-02-02 09:06:14 +00:00
parent 466fb263ac
commit b8b4a2bc9c
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}