summaryrefslogtreecommitdiff
path: root/openbox/client.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-03-11 00:59:13 +0000
committerDana Jansens <danakj@orodu.net>2007-03-11 00:59:13 +0000
commitbd19fd06db8905ef835109414314ef928370a7d7 (patch)
tree12229712fce0d8fea3769803452ed2867f5d0e4b /openbox/client.c
parent35ab1264ee5efe0c0a5458329f4e7d2ebda43b98 (diff)
remove the kde icon hint, they use the EWMH icon now
Diffstat (limited to 'openbox/client.c')
-rw-r--r--openbox/client.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/openbox/client.c b/openbox/client.c
index fff9bdd5..27e63292 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -1776,23 +1776,6 @@ void client_update_icons(ObClient *self)
}
g_free(data);
- } else if (PROP_GETA32(self->window, kwm_win_icon,
- kwm_win_icon, &data, &num)) {
- if (num == 2) {
- self->nicons++;
- self->icons = g_new(ObClientIcon, self->nicons);
- xerror_set_ignore(TRUE);
- if (!RrPixmapToRGBA(ob_rr_inst,
- data[0], data[1],
- &self->icons[self->nicons-1].width,
- &self->icons[self->nicons-1].height,
- &self->icons[self->nicons-1].data)) {
- g_free(&self->icons[self->nicons-1]);
- self->nicons--;
- }
- xerror_set_ignore(FALSE);
- }
- g_free(data);
} else {
XWMHints *hints;