# HG changeset patch # User Frank Benoit # Date 1211684140 -7200 # Node ID 0953c252a7643aeb47b57d6924e32adc305d41f3 # Parent 4ac9946b9fb5d6449db57ed8f1ce21087d675435 Fix compile errors diff -r 4ac9946b9fb5 -r 0953c252a764 dwtx/ui/forms/widgets/Section.d --- a/dwtx/ui/forms/widgets/Section.d Sat May 24 08:33:56 2008 +0200 +++ b/dwtx/ui/forms/widgets/Section.d Sun May 25 04:55:40 2008 +0200 @@ -122,7 +122,7 @@ super.internalSetExpanded(expanded); if ((getExpansionStyle() & TITLE_BAR) !is 0) { if (!expanded) - super.setBackgroundImage(null); + super.setBackgroundImage(cast(Image)null); } reflow(); } diff -r 4ac9946b9fb5 -r 0953c252a764 dwtx/ui/internal/forms/widgets/ControlSegment.d --- a/dwtx/ui/internal/forms/widgets/ControlSegment.d Sat May 24 08:33:56 2008 +0200 +++ b/dwtx/ui/internal/forms/widgets/ControlSegment.d Sun May 25 04:55:40 2008 +0200 @@ -25,6 +25,8 @@ import dwt.widgets.Composite; import dwt.widgets.Control; +import dwt.dwthelper.utils; + public class ControlSegment : ObjectSegment, IFocusSelectable {