comparison dwt/widgets/Composite.d @ 40:7fb1ab011933

made macro implementations active, one compile problem in OS.d:2554
author Frank Benoit <benoit@tionex.de>
date Thu, 10 Jan 2008 08:18:45 +0100
parents 6e625fa1612d
children 93981635e709
comparison
equal deleted inserted replaced
39:8e76ddc90b31 40:7fb1ab011933
469 auto windows = windowList; 469 auto windows = windowList;
470 while (windows !is null) { 470 while (windows !is null) {
471 auto window = cast(GdkDrawable*)OS.g_list_data (windows); 471 auto window = cast(GdkDrawable*)OS.g_list_data (windows);
472 if (window !is redrawWindow) { 472 if (window !is redrawWindow) {
473 OS.gdk_window_get_user_data (window, cast(void**)&userData); 473 OS.gdk_window_get_user_data (window, cast(void**)&userData);
474 if (userData is null || OS.G_OBJECT_TYPE (userData) !is display.gtk_fixed_get_type ()) { 474 if (userData is null || OS.G_OBJECT_TYPE (cast(GTypeInstance*)userData) !is display.gtk_fixed_get_type ()) {
475 OS.gdk_window_lower (window); 475 OS.gdk_window_lower (window);
476 } 476 }
477 } 477 }
478 windows = cast(GList*)OS.g_list_next (windows); 478 windows = cast(GList*)OS.g_list_next (windows);
479 } 479 }