aboutsummaryrefslogtreecommitdiffstats
path: root/matchbox/mb-wm-client-window.c
diff options
context:
space:
mode:
Diffstat (limited to 'matchbox/mb-wm-client-window.c')
-rw-r--r--matchbox/mb-wm-client-window.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/matchbox/mb-wm-client-window.c b/matchbox/mb-wm-client-window.c
index 8e8b67d..f8ab6c1 100644
--- a/matchbox/mb-wm-client-window.c
+++ b/matchbox/mb-wm-client-window.c
@@ -74,7 +74,7 @@ static void
mb_wm_client_window_destroy (MBWMObject *this)
{
MBWMClientWindow * win = MB_WM_CLIENT_WINDOW (this);
- MBWMList * l = win->icons;
+ GList * l = win->icons;
if (win->name)
XFree (win->name);
@@ -921,8 +921,8 @@ mb_wm_client_window_sync_properties ( MBWMClientWindow *win,
}
else
{
- MBWMList *l = win->icons;
- MBWMList *list_end = NULL;
+ GList *l = win->icons;
+ GList *list_end = NULL;
unsigned long *p = icons;
unsigned long *p_end = icons + nitems_return;
@@ -937,7 +937,7 @@ mb_wm_client_window_sync_properties ( MBWMClientWindow *win,
while (p < p_end)
{
- l = mb_wm_util_malloc0 (sizeof (MBWMList));
+ l = mb_wm_util_malloc0 (sizeof (GList));
p = icon_from_net_wm_icon (p, (MBWMRgbaIcon **)&l->data);
if (list_end)