Replace DPRINTF with TRACE.

diff --git a/controls/listbox.c b/controls/listbox.c
index 1b625b5..fc72609 100644
--- a/controls/listbox.c
+++ b/controls/listbox.c
@@ -750,9 +750,9 @@
         TRACE("[%p]: settabstops ", hwnd );
         for (i = 0; i < descr->nb_tabs; i++) {
 	    descr->tabs[i] = *p++<<1; /* FIXME */
-            if (TRACE_ON(listbox)) DPRINTF("%hd ", descr->tabs[i]);
+            if (TRACE_ON(listbox)) TRACE("%hd ", descr->tabs[i]);
 	}
-        if (TRACE_ON(listbox)) DPRINTF("\n");
+        if (TRACE_ON(listbox)) TRACE("\n");
     }
     else memcpy( descr->tabs, tabs, descr->nb_tabs * sizeof(INT) );
     /* FIXME: repaint the window? */
diff --git a/controls/scroll.c b/controls/scroll.c
index 4c8aef3..b86ea5f 100644
--- a/controls/scroll.c
+++ b/controls/scroll.c
@@ -1560,10 +1560,10 @@
     if (TRACE_ON(scroll))
     {
         TRACE("hwnd=%p bar=%d", hwnd, nBar);
-        if (info->fMask & SIF_PAGE) DPRINTF( " page=%d", info->nPage );
-        if (info->fMask & SIF_POS) DPRINTF( " pos=%d", info->nPos );
-        if (info->fMask & SIF_RANGE) DPRINTF( " min=%d max=%d", info->nMin, info->nMax );
-        DPRINTF("\n");
+        if (info->fMask & SIF_PAGE) TRACE( " page=%d", info->nPage );
+        if (info->fMask & SIF_POS) TRACE( " pos=%d", info->nPos );
+        if (info->fMask & SIF_RANGE) TRACE( " min=%d max=%d", info->nMin, info->nMax );
+        TRACE("\n");
     }
 
     /* Set the page size */