forked from e16/e16
1
0
Fork 0

Remove incorrect comment. Cosmetics.

SVN revision: 54047
This commit is contained in:
Kim Woelders 2010-10-30 18:41:20 +00:00
parent f4805ad117
commit 2493319624
1 changed files with 3 additions and 5 deletions

View File

@ -1158,15 +1158,13 @@ EwinEventReparent(EWin * ewin, XEvent * ev)
EGrabServer();
/* Refetch parent window. We cannot rely on the one in the event. */
if (EoIsGone(ewin))
parent = None;
else
parent = ev->xreparent.parent;
parent = EoIsGone(ewin) ? None : ev->xreparent.parent;
if (EDebug(EDBUG_TYPE_EWINS))
Eprintf("EwinEventReparent %#lx st=%d parent=%#lx: %s\n",
EwinGetClientXwin(ewin), ewin->state.state, parent,
EwinGetTitle(ewin));
if (parent != EwinGetContainerXwin(ewin))
EwinDestroy(ewin);