changeset 110:9ad59dbf99d2

fix: minor edit caused a new compile error
author Frank Benoit <benoit@tionex.de>
date Mon, 11 Feb 2008 02:49:42 +0100
parents 0a02d6d3466b
children a9a4ef66a7df f353be82b6be
files dwt/widgets/ExpandBar.d
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/dwt/widgets/ExpandBar.d	Mon Feb 11 02:45:33 2008 +0100
+++ b/dwt/widgets/ExpandBar.d	Mon Feb 11 02:49:42 2008 +0100
@@ -137,7 +137,7 @@
 
 override int callWindowProc (HWND hwnd, int msg, int wParam, int lParam) {
     if (handle is null) return 0;
-    return cast(LRESULT) OS.DefWindowProc (hwnd, msg, wParam, lParam);
+    return OS.DefWindowProc (hwnd, msg, wParam, lParam);
 }
 
 override protected void checkSubclass () {
@@ -287,7 +287,7 @@
     }
     HFONT hCaptionFont, oldFont;
     if (hTheme is null) {
-        static if (!OS.IsWinCE ) { 
+        static if (!OS.IsWinCE ) {
             if (hFont is null) {
                 NONCLIENTMETRICS info;
                 info.cbSize = NONCLIENTMETRICS.sizeof;