# HG changeset patch # User Frank Benoit # Date 1204500840 -3600 # Node ID ac6ff7065cacc7c9bdeda78502cf2ae2a7ff51b0 # Parent df23b11d0b70a661cc683705235b0107809ce54d Fix: pointer porting, thanks WasserDragon for the hint. diff -r df23b11d0b70 -r ac6ff7065cac dwt/widgets/Decorations.d --- 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); }