Debug stuff cleanups.

SVN revision: 54045
This commit is contained in:
Kim Woelders 2010-10-30 18:41:15 +00:00
parent 32a4e43e6e
commit 534611b54d
1 changed files with 3 additions and 3 deletions

View File

@ -575,7 +575,7 @@ EDestroyWindow(Win win)
return;
#if DEBUG_XWIN
Eprintf("ExDestroyWindow: %p %#lx\n", win, win->xwin);
Eprintf("EDestroyWindow: %p %#lx\n", win, win->xwin);
#endif
if (win->parent != None)
{
@ -794,8 +794,8 @@ EReparentWindow(Win win, Win parent, int x, int y)
#if 0
Eprintf
("EReparentWindow: %p %#lx: %d %#lx->%#lx %d,%d %dx%d -> %d,%d\n",
win, win->xwin, win->mapped, win->parent, parent->xwin,
win->x, win->y, win->w, win->h, x, y);
win, win->xwin, win->mapped, (win->parent) ? win->parent->xwin : None,
parent->xwin, win->x, win->y, win->w, win->h, x, y);
#endif
if (parent == win->parent)
{