user32: Fix the edit class extra byte count on non-x86 platforms (try 2)

André Hentschel nerv at dawncrow.de
Wed Oct 3 14:43:04 CDT 2012


---
 dlls/user32/edit.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/user32/edit.c b/dlls/user32/edit.c
index f5d4e65..44ead1b 100644
--- a/dlls/user32/edit.c
+++ b/dlls/user32/edit.c
@@ -5173,10 +5173,10 @@ const struct builtin_class_descr EDIT_builtin_class =
     editW,                /* name */
     CS_DBLCLKS | CS_PARENTDC,   /* style */
     WINPROC_EDIT,         /* proc */
-#ifdef __i386__
-    sizeof(EDITSTATE *) + sizeof(WORD), /* extra */
-#else
+#ifdef _WIN64
     sizeof(EDITSTATE *),  /* extra */
+#else
+    sizeof(EDITSTATE *) + sizeof(WORD), /* extra */
 #endif
     IDC_IBEAM,            /* cursor */
     0                     /* brush */
-- 
1.7.4.1


-- 

Best Regards, André Hentschel


More information about the wine-patches mailing list