TODO: Update todo

This commit is contained in:
Martin Duquesnoy
2008-11-15 13:21:09 +01:00
parent 6670b3d219
commit d00b6a6c49
3 changed files with 6 additions and 4 deletions

View File

@@ -188,7 +188,7 @@ client_focus(Client *c)
return;
}
/* Get Client with any window Client member {{{ */
/* Get Client with a window */
/** Get a client->win with a window
* \param w Window
* \return The client
@@ -301,7 +301,9 @@ uicb_client_kill(uicb_t cmd)
ev.xclient.format = 32;
ev.xclient.data.l[0] = wm_atom[WMDelete];
ev.xclient.data.l[1] = CurrentTime;
XSendEvent(dpy, sel->win, False, NoEventMask, &ev);
client_unmanage(sel);
return;
}

View File

@@ -137,13 +137,13 @@ infobar_destroy(void)
bar_delete(infobar->bar);
bar_delete_subwin(infobar->bar);
bar_delete(infobar->layout_button);
bar_delete_subwin(infobar->layout_button);
for(i = 1; i < conf.ntag + 1; ++i)
{
bar_delete_subwin(infobar->tags[i]);
bar_delete(infobar->tags[i]);
}
bar_delete(infobar->layout_button);
bar_delete_subwin(infobar->layout_button);
efree(infobar);
return;