diff dwt/widgets/Scrollable.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/Scrollable.d	Mon Jan 26 10:46:51 2009 -0500
+++ b/dwt/widgets/Scrollable.d	Tue Jan 27 10:40:55 2009 +0100
@@ -27,10 +27,6 @@
 import dwt.widgets.Widget;
 
 import dwt.dwthelper.utils;
-//import tango.util.log.Trace;
-void trc( long line ){
-    //Trace.formatln( "Scrollable {}", line );
-}
 
 /**
  * This class is the abstract superclass of all classes which
@@ -279,7 +275,6 @@
 }
 
 override LRESULT WM_HSCROLL (int wParam, int lParam) {
-trc(__LINE__);
     LRESULT result = super.WM_HSCROLL (wParam, lParam);
     if (result !is null) return result;
 
@@ -297,7 +292,6 @@
 }
 
 override LRESULT WM_MOUSEWHEEL (int wParam, int lParam) {
-trc(__LINE__);
     int scrollRemainder = display.scrollRemainder;
     LRESULT result = super.WM_MOUSEWHEEL (wParam, lParam);
     if (result !is null) return result;
@@ -377,7 +371,6 @@
 }
 
 override LRESULT WM_SIZE (int wParam, int lParam) {
-trc(__LINE__);
     int /*long*/ code = callWindowProc (handle, OS.WM_SIZE, wParam, lParam);
     super.WM_SIZE (wParam, lParam);
     // widget may be disposed at this point
@@ -386,7 +379,6 @@
 }
 
 override LRESULT WM_VSCROLL (int wParam, int lParam) {
-trc(__LINE__);
     LRESULT result = super.WM_VSCROLL (wParam, lParam);
     if (result !is null) return result;
     /*