diff dwt/widgets/ExpandBar.d @ 331:27479f54069d

Removed trace outputs.
author Frank Benoit <benoit@tionex.de>
date Tue, 27 Jan 2009 10:40:55 +0100
parents fd9c62a2998e
children
line wrap: on
line diff
--- a/dwt/widgets/ExpandBar.d	Mon Jan 26 10:46:51 2009 -0500
+++ b/dwt/widgets/ExpandBar.d	Tue Jan 27 10:40:55 2009 +0100
@@ -35,10 +35,6 @@
 import dwt.widgets.Event;
 
 import dwt.dwthelper.utils;
-import tango.util.log.Trace;
-void trc( long line ){
-    //Trace.formatln( "ExpandBar {}", line );
-}
 
 /**
  * Instances of this class support the layout of selectable
@@ -639,7 +635,6 @@
 }
 
 override LRESULT WM_KEYDOWN (int wParam, int lParam) {
-trc(__LINE__);
     LRESULT result = super.WM_KEYDOWN (wParam, lParam);
     if (result !is null) return result;
     if (focusItem is null) return result;
@@ -722,7 +717,6 @@
 }
 
 override LRESULT WM_MOUSELEAVE (int wParam, int lParam) {
-trc(__LINE__);
     LRESULT result = super.WM_MOUSELEAVE (wParam, lParam);
     if (result !is null) return result;
     for (int i = 0; i < itemCount; i++) {
@@ -753,7 +747,6 @@
 }
 
 override LRESULT WM_PAINT (int wParam, int lParam) {
-trc(__LINE__);
     PAINTSTRUCT ps;
     GCData data = new GCData ();
     data.ps = &ps;
@@ -783,7 +776,6 @@
 }
 
 override LRESULT WM_PRINTCLIENT (int wParam, int lParam) {
-trc(__LINE__);
     LRESULT result = super.WM_PRINTCLIENT (wParam, lParam);
     RECT rect;
     OS.GetClientRect (handle, &rect);
@@ -797,7 +789,6 @@
 }
 
 override LRESULT WM_SETCURSOR (int wParam, int lParam) {
-trc(__LINE__);
     LRESULT result = super.WM_SETCURSOR (wParam, lParam);
     if (result !is null) return result;
     int hitTest = cast(short) OS.LOWORD (lParam);
@@ -815,14 +806,12 @@
 }
 
 override LRESULT WM_SETFOCUS (int wParam, int lParam) {
-trc(__LINE__);
     LRESULT result = super.WM_SETFOCUS (wParam, lParam);
     if (focusItem !is null) focusItem.redraw (true);
     return result;
 }
 
 override LRESULT WM_SIZE (int wParam, int lParam) {
-trc(__LINE__);
     LRESULT result = super.WM_SIZE (wParam, lParam);
     RECT rect;
     OS.GetClientRect (handle, &rect);
@@ -837,7 +826,6 @@
 }
 
 override LRESULT wmScroll (ScrollBar bar, bool update, HWND hwnd, int msg, int wParam, int lParam) {
-trc(__LINE__);
     LRESULT result = super.wmScroll (bar, true, hwnd, msg, wParam, lParam);
     SCROLLINFO info;
     info.cbSize = SCROLLINFO.sizeof;