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());
|
||||
|
||||
// TODO client edge?
|
||||
c->hwnd = uiWindowsUtilCreateControlHWND(WS_EX_CLIENTEDGE,
|
||||
L"combobox", L"",
|
||||
style | WS_TABSTOP,
|
||||
|
|
|
@ -33,7 +33,7 @@ uiDateTimePicker *finishNewDateTimePicker(DWORD style, WCHAR *format)
|
|||
|
||||
d = (struct datetimepicker *) uiWindowsNewSingleHWNDControl(uiTypeDateTimePicker());
|
||||
|
||||
d->hwnd = uiWindowsUtilCreateControlHWND(0, // TODO client edge?
|
||||
d->hwnd = uiWindowsUtilCreateControlHWND(WS_EX_CLIENTEDGE,
|
||||
DATETIMEPICK_CLASSW, L"",
|
||||
style | WS_TABSTOP,
|
||||
hInstance, NULL,
|
||||
|
|
Loading…
Reference in New Issue