This commit message intentionally left blank.

This commit is contained in:
Pietro Gagliardi 2015-06-06 16:01:32 -04:00
parent f0483f294d
commit 02e9c0c4f2
5 changed files with 4 additions and 9 deletions

View File

@ -1,7 +1,3 @@
wine
- say that dialogs respond to WM_PRINTCLIENT on xp+ with visual styles enabled
- trackbars are not clamped with TBM_SETPOS
uthash
- stdint code misses MinGW(-w64)

View File

@ -14,7 +14,7 @@ static LRESULT CALLBACK containerWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LP
return lResult;
switch (uMsg) {
case WM_PAINT:
break;//TODO dc = BeginPaint(hwnd, &ps);
dc = BeginPaint(hwnd, &ps);
if (dc == NULL)
logLastError("error beginning container paint in containerWndProc()");
r = ps.rcPaint;

View File

@ -15,7 +15,6 @@ uiDefineControlType(uiDateTimePicker, uiTypeDateTimePicker, struct datetimepicke
// The real date/time picker does a manual replacement of "yy" with "yyyy" for DTS_SHORTDATECENTURYFORMAT.
// Because we're also duplicating its functionality (see below), we have to do it too.
// This code should not be contributed to wine.
static WCHAR *expandYear(WCHAR *dts, int n)
{
WCHAR *out;

View File

@ -112,8 +112,8 @@ BOOL handleParentMessages(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, LR
return runWM_NOTIFY(wParam, lParam, lResult);
case WM_HSCROLL:
return runWM_HSCROLL(wParam, lParam, lResult);
//TODO case WM_CTLCOLORSTATIC:
//TODO case WM_CTLCOLORBTN:
case WM_CTLCOLORSTATIC:
case WM_CTLCOLORBTN:
if (parentBrush != NULL)
if (DeleteObject(parentBrush) == 0)
logLastError("error deleting old background brush in containerWndProc()");

View File

@ -102,7 +102,7 @@ static void recreateUpDown(struct spinbox *s)
HWND parent;
BOOL preserve = FALSE;
intmax_t current;
// wine uses this type
// Microsoft's commctrl.h says to use this type
INT min, max;
parent = GetAncestor(s->hwnd, GA_PARENT);