diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-06-21 02:00:42 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-06-21 02:00:42 +0000 |
| commit | 092616de9a809a1c9a646901521ffcc1f337e913 (patch) | |
| tree | da4c62231354e15d6a784cf1682c9b628563e872 /openbox | |
| parent | bd59576748db274c1a5e6ffece5df51d7d700b23 (diff) | |
rename pixel32/16 to RrPixel32/16
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/client.c | 2 | ||||
| -rw-r--r-- | openbox/client.h | 2 |
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 |
