diff options
author | oga | 2008-05-18 19:38:18 +0000 |
---|---|---|
committer | oga | 2008-05-18 19:38:18 +0000 |
commit | e3cff8cb8136b71de61854cd658d22ee25d7e24a (patch) | |
tree | 9c8b949904650077926a8c0128861ab0725f3561 /group.c | |
parent | 14d1b5fbd009e48cb5cd1b5f4bee76680646b5f5 (diff) | |
download | cwm-e3cff8cb8136b71de61854cd658d22ee25d7e24a.tar.gz |
group_ctx->name is only used in this one function, and for now it
corresponds directly to the static list of group names. Just use the
static list and stop strdup()ing a new version for the context struct.
Since that never got freed this also fixes a small memleak.
Kill some unused variables while i'm here.
ok okan@
Diffstat (limited to 'group.c')
-rw-r--r-- | group.c | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -16,7 +16,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: group.c,v 1.12 2008/05/15 22:18:00 oga Exp $ + * $Id: group.c,v 1.13 2008/05/18 19:38:18 oga Exp $ */ #include "headers.h" @@ -24,10 +24,8 @@ #define CALMWM_NGROUPS 9 -int Groupnamemode = 0; struct group_ctx *Group_active = NULL; struct group_ctx Groups[CALMWM_NGROUPS]; -char Group_name[256]; int Grouphideall = 0; struct group_ctx_q Groupq; @@ -266,16 +264,13 @@ group_menu(XButtonEvent *e) if (TAILQ_EMPTY(&gc->clients)) continue; - if (gc->name == NULL) - gc->name = xstrdup(shortcut_to_name[gc->shortcut]); - XCALLOC(mi, struct menu); if (gc->hidden) snprintf(mi->text, sizeof(mi->text), "%d: [%s]", - gc->shortcut, gc->name); + gc->shortcut, shortcut_to_name[gc->shortcut]); else snprintf(mi->text, sizeof(mi->text), "%d: %s", - gc->shortcut, gc->name); + gc->shortcut, shortcut_to_name[gc->shortcut]); mi->ctx = gc; TAILQ_INSERT_TAIL(&menuq, mi, entry); } |