diff options
author | Dan Gudmundsson <[email protected]> | 2014-03-20 11:40:58 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2014-03-20 15:10:15 +0100 |
commit | 8bf9ec0cb4d4f15bbc2e0e6ccadb43284bcfaa7a (patch) | |
tree | 635dea7e749b80a6573662305cd2f016aefd404a /lib/wx/c_src/gen | |
parent | 5b5ae437cbb7132cb251f7556764971c9feef3ad (diff) | |
download | otp-8bf9ec0cb4d4f15bbc2e0e6ccadb43284bcfaa7a.tar.gz otp-8bf9ec0cb4d4f15bbc2e0e6ccadb43284bcfaa7a.tar.bz2 otp-8bf9ec0cb4d4f15bbc2e0e6ccadb43284bcfaa7a.zip |
wx: Fix listCtrl sort callback
Diffstat (limited to 'lib/wx/c_src/gen')
-rw-r--r-- | lib/wx/c_src/gen/wxe_funcs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wx/c_src/gen/wxe_funcs.cpp b/lib/wx/c_src/gen/wxe_funcs.cpp index 3f5cb4c0f5..8da517ee64 100644 --- a/lib/wx/c_src/gen/wxe_funcs.cpp +++ b/lib/wx/c_src/gen/wxe_funcs.cpp @@ -15875,7 +15875,7 @@ case wxListCtrl_SortItems: { // wxListCtrl::SortItems taylormade callbackInfo* cb = new callbackInfo(); cb->port = Ecmd.port; cb->callbackID = sortCallback; - bool Result = This->SortItems(wxEListCtrlCompare, (long)cb); + bool Result = This->SortItems(wxEListCtrlCompare, (wxeIntPtr)cb); delete cb; /* Destroy the callback, see wxEPrintout::clear_cb */ |