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

2
TODO
View File

@ -1,4 +1,4 @@
· Add Doxygen comment · Add Doxygen comment <-> OK
· Mouse bindings in the config file · Mouse bindings in the config file
· Can change client position in the tile grid · Can change client position in the tile grid
· Add image support <- *.xpm: Removed because bugs. · Add image support <- *.xpm: Removed because bugs.

View File

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

View File

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