summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
Diffstat (limited to 'openbox')
-rw-r--r--openbox/client.c2
-rw-r--r--openbox/client.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/openbox/client.c b/openbox/client.c
index d7a99def..24d77127 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -1333,7 +1333,7 @@ void client_update_icons(Client *self)
if (w*h == 0) continue;
- self->icons[j].data = g_new(pixel32, w * h);
+ self->icons[j].data = g_new(RrPixel32, w * h);
for (x = 0, y = 0, t = 0; t < w * h; ++t, ++x, ++i) {
if (x >= w) {
x = 0;
diff --git a/openbox/client.h b/openbox/client.h
index e45b3771..ff7f67c7 100644
--- a/openbox/client.h
+++ b/openbox/client.h
@@ -18,7 +18,7 @@ struct Group;
/*! Holds an icon in ARGB format */
typedef struct Icon {
int width, height;
- pixel32 *data;
+ RrPixel32 *data;
} Icon;
/*! The MWM Hints as retrieved from the window property