Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 396247
Collapse All | Expand All

(-)xcompmgr-dana/xcompmgr.c (+15 lines)
Lines 1991-1996 Link Here
1991
    free(buf);
1991
    free(buf);
1992
1992
1993
    XSetSelectionOwner (dpy, a, w, 0);
1993
    XSetSelectionOwner (dpy, a, w, 0);
1994
    
1995
    /* Send a ClientMessage notification so other apps
1996
       can detect the compositing manager started */
1997
    XClientMessageEvent ev;
1998
    ev.type = ClientMessage;
1999
    ev.window = RootWindow (dpy, scr);
2000
    ev.message_type = a;
2001
    ev.format = 32;
2002
    ev.data.l[0] = CurrentTime;
2003
    ev.data.l[1] = a;
2004
    ev.data.l[2] = w;
2005
    ev.data.l[3] = 0;
2006
    ev.data.l[4] = 0;
2007
    XSendEvent(dpy, RootWindow (dpy, scr), False, StructureNotifyMask, (XEvent*)&ev);
2008
1994
}
2009
}
1995
2010
1996
int
2011
int

Return to bug 396247