From 3c13ab1ab45699c9441a0b0b3a633a9f45136e9b Mon Sep 17 00:00:00 2001 From: "Dimitrie O. Paun" Date: Sat, 25 Nov 2000 01:37:22 +0000 Subject: [PATCH] Update comments, cleanup warning messages. --- dlls/comctl32/updown.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/dlls/comctl32/updown.c b/dlls/comctl32/updown.c index ec2e62451de..8563d95f141 100644 --- a/dlls/comctl32/updown.c +++ b/dlls/comctl32/updown.c @@ -15,16 +15,12 @@ * - listbox as buddy window * - acceleration * - base 16 - * - UDS_ALIGNLEFT, ~UDS_WRAP - * (tested - they work) * - integers with thousand separators. * (fixed bugs. ) * * Even though the above list seems rather large, the control seems to * behave very well so I am confident it does work in most (all) of the * untested cases. - * Problems: - * I do not like the arrows yet, I'll work more on them later on. */ #include @@ -83,7 +79,7 @@ typedef struct static int accelIndex = -1; #define UNKNOWN_PARAM(msg, wParam, lParam) WARN(\ - "UpDown Ctrl: Unknown parameter(s) for message " #msg \ + "Unknown parameter(s) for message " #msg \ "(%04x): wp=%04x lp=%08lx\n", msg, wParam, lParam); #define UPDOWN_GetInfoPtr(hwnd) ((UPDOWN_INFO *)GetWindowLongA (hwnd,0))