Settled WS_EX_CLIENTEDGE issues.
This commit is contained in:
parent
199222eb31
commit
cf05629175
|
@ -48,7 +48,6 @@ static uiCombobox *finishNewCombobox(DWORD style)
|
||||||
|
|
||||||
c = (struct combobox *) uiWindowsNewSingleHWNDControl(uiTypeCombobox());
|
c = (struct combobox *) uiWindowsNewSingleHWNDControl(uiTypeCombobox());
|
||||||
|
|
||||||
// TODO client edge?
|
|
||||||
c->hwnd = uiWindowsUtilCreateControlHWND(WS_EX_CLIENTEDGE,
|
c->hwnd = uiWindowsUtilCreateControlHWND(WS_EX_CLIENTEDGE,
|
||||||
L"combobox", L"",
|
L"combobox", L"",
|
||||||
style | WS_TABSTOP,
|
style | WS_TABSTOP,
|
||||||
|
|
|
@ -33,7 +33,7 @@ uiDateTimePicker *finishNewDateTimePicker(DWORD style, WCHAR *format)
|
||||||
|
|
||||||
d = (struct datetimepicker *) uiWindowsNewSingleHWNDControl(uiTypeDateTimePicker());
|
d = (struct datetimepicker *) uiWindowsNewSingleHWNDControl(uiTypeDateTimePicker());
|
||||||
|
|
||||||
d->hwnd = uiWindowsUtilCreateControlHWND(0, // TODO client edge?
|
d->hwnd = uiWindowsUtilCreateControlHWND(WS_EX_CLIENTEDGE,
|
||||||
DATETIMEPICK_CLASSW, L"",
|
DATETIMEPICK_CLASSW, L"",
|
||||||
style | WS_TABSTOP,
|
style | WS_TABSTOP,
|
||||||
hInstance, NULL,
|
hInstance, NULL,
|
||||||
|
|
Loading…
Reference in New Issue