This commit message intentionally left blank.
This commit is contained in:
parent
f0483f294d
commit
02e9c0c4f2
|
@ -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
|
uthash
|
||||||
- stdint code misses MinGW(-w64)
|
- stdint code misses MinGW(-w64)
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ static LRESULT CALLBACK containerWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LP
|
||||||
return lResult;
|
return lResult;
|
||||||
switch (uMsg) {
|
switch (uMsg) {
|
||||||
case WM_PAINT:
|
case WM_PAINT:
|
||||||
break;//TODO dc = BeginPaint(hwnd, &ps);
|
dc = BeginPaint(hwnd, &ps);
|
||||||
if (dc == NULL)
|
if (dc == NULL)
|
||||||
logLastError("error beginning container paint in containerWndProc()");
|
logLastError("error beginning container paint in containerWndProc()");
|
||||||
r = ps.rcPaint;
|
r = ps.rcPaint;
|
||||||
|
|
|
@ -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.
|
// 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.
|
// 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)
|
static WCHAR *expandYear(WCHAR *dts, int n)
|
||||||
{
|
{
|
||||||
WCHAR *out;
|
WCHAR *out;
|
||||||
|
|
|
@ -112,8 +112,8 @@ BOOL handleParentMessages(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, LR
|
||||||
return runWM_NOTIFY(wParam, lParam, lResult);
|
return runWM_NOTIFY(wParam, lParam, lResult);
|
||||||
case WM_HSCROLL:
|
case WM_HSCROLL:
|
||||||
return runWM_HSCROLL(wParam, lParam, lResult);
|
return runWM_HSCROLL(wParam, lParam, lResult);
|
||||||
//TODO case WM_CTLCOLORSTATIC:
|
case WM_CTLCOLORSTATIC:
|
||||||
//TODO case WM_CTLCOLORBTN:
|
case WM_CTLCOLORBTN:
|
||||||
if (parentBrush != NULL)
|
if (parentBrush != NULL)
|
||||||
if (DeleteObject(parentBrush) == 0)
|
if (DeleteObject(parentBrush) == 0)
|
||||||
logLastError("error deleting old background brush in containerWndProc()");
|
logLastError("error deleting old background brush in containerWndProc()");
|
||||||
|
|
|
@ -102,7 +102,7 @@ static void recreateUpDown(struct spinbox *s)
|
||||||
HWND parent;
|
HWND parent;
|
||||||
BOOL preserve = FALSE;
|
BOOL preserve = FALSE;
|
||||||
intmax_t current;
|
intmax_t current;
|
||||||
// wine uses this type
|
// Microsoft's commctrl.h says to use this type
|
||||||
INT min, max;
|
INT min, max;
|
||||||
|
|
||||||
parent = GetAncestor(s->hwnd, GA_PARENT);
|
parent = GetAncestor(s->hwnd, GA_PARENT);
|
||||||
|
|
Loading…
Reference in New Issue