mirror of
https://github.com/reactos/reactos.git
synced 2025-08-10 22:15:53 +00:00
Reverse WndProcA and WndProcW, our order is the reverse of the order in
Wine (we should change it) svn path=/trunk/; revision=7062
This commit is contained in:
parent
c8004d7823
commit
f5d602de19
2 changed files with 2 additions and 2 deletions
|
@ -101,8 +101,8 @@ const struct builtin_class_descr BUTTON_builtin_class =
|
||||||
{
|
{
|
||||||
L"Button", /* name */
|
L"Button", /* name */
|
||||||
CS_GLOBALCLASS | CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC, /* style */
|
CS_GLOBALCLASS | CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC, /* style */
|
||||||
(WNDPROC) ButtonWndProcA, /* procA */
|
|
||||||
(WNDPROC) ButtonWndProcW, /* procW */
|
(WNDPROC) ButtonWndProcW, /* procW */
|
||||||
|
(WNDPROC) ButtonWndProcA, /* procA */
|
||||||
NB_EXTRA_BYTES, /* extra */
|
NB_EXTRA_BYTES, /* extra */
|
||||||
(LPCWSTR) IDC_ARROW, /* cursor */
|
(LPCWSTR) IDC_ARROW, /* cursor */
|
||||||
0 /* brush */
|
0 /* brush */
|
||||||
|
|
|
@ -87,8 +87,8 @@ const struct builtin_class_descr COMBO_builtin_class =
|
||||||
{
|
{
|
||||||
L"ComboBox", /* name */
|
L"ComboBox", /* name */
|
||||||
CS_GLOBALCLASS | CS_PARENTDC | CS_DBLCLKS, /* style */
|
CS_GLOBALCLASS | CS_PARENTDC | CS_DBLCLKS, /* style */
|
||||||
(WNDPROC) ComboWndProcA, /* procA */
|
|
||||||
(WNDPROC) ComboWndProcW, /* procW */
|
(WNDPROC) ComboWndProcW, /* procW */
|
||||||
|
(WNDPROC) ComboWndProcA, /* procA */
|
||||||
sizeof(HEADCOMBO *), /* extra */
|
sizeof(HEADCOMBO *), /* extra */
|
||||||
(LPCWSTR) IDC_ARROW, /* cursor */
|
(LPCWSTR) IDC_ARROW, /* cursor */
|
||||||
0 /* brush */
|
0 /* brush */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue