changeset 189:ac6ff7065cac

Fix: pointer porting, thanks WasserDragon for the hint.
author Frank Benoit <benoit@tionex.de>
date Mon, 03 Mar 2008 00:34:00 +0100
parents df23b11d0b70
children 934fb859da8e
files dwt/widgets/Decorations.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/dwt/widgets/Decorations.d	Sun Mar 02 23:40:08 2008 +0100
+++ b/dwt/widgets/Decorations.d	Mon Mar 03 00:34:00 2008 +0100
@@ -198,7 +198,7 @@
     GList* data;
     auto temp = pixbufs;
     while (temp !is null) {
-        data = temp;
+        data = *cast(GList**)temp;
         OS.g_object_unref (data);
         temp = cast(GList*)OS.g_list_next (temp);
     }