Ticket #14949 (closed build error: fixed)
patch to built wxWidget 2.9.4 with x86_64_mingw cross compiler
| Reported by: | schloegl | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | wxMSW | Version: | 2.9.4 |
| Keywords: | Cc: | ||
| Blocked By: | Patch: | yes | |
| Blocking: |
Description
When trying to built wxWidgets 2.9.4 with the mingw cross-compiler for 64bit windows target, a compiler error occurs. The following patch solves that problem.
--- ./src/msw/textctrl.cpp 2013-01-02 21:47:03.000000000 +0100
+++ ./src/msw/textctrl.cpp 2013-01-02 21:46:53.000000000 +0100
@@ -992,7 +992,7 @@
EDITSTREAM eds;
wxZeroMemory(eds);
- eds.dwCookie = (DWORD)&data;
+ eds.dwCookie = (DWORD_PTR)&data;
eds.pfnCallback = wxRichEditStreamOut;
::SendMessage
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

