The keycodes are deprecated:
WXK_PRIOR
WXK_NEXT
WXK_NUMPAD_PRIOR
WXK_NUMPAD_NEXT
Patch in the file ScintillaWX.cpp: (sorry, I didn't
made a proper patch file, I don't have CVS)
case WXK_HOME: key = SCK_HOME; break;
case WXK_NUMPAD_END: // fall through
case WXK_END: key = SCK_END; break;
#if wxCHECK_VERSION(2, 7, 0)
case WXK_NUMPAD_PAGEUP: // fall through
case WXK_PAGEUP: key = SCK_PRIOR; break;
#else
case WXK_NUMPAD_PAGEUP: // fall through
case WXK_PAGEUP: // fall through
case WXK_NUMPAD_PRIOR: // fall through
case WXK_PRIOR: key = SCK_PRIOR; break;
#endif
#if wxCHECK_VERSION(2, 7, 0)
case WXK_NUMPAD_PAGEDOWN: // fall through
case WXK_PAGEDOWN: key = SCK_NEXT; break;
#else
case WXK_NUMPAD_PAGEDOWN: // fall through
case WXK_PAGEDOWN: // fall through
case WXK_NUMPAD_NEXT: // fall through
case WXK_NEXT: key = SCK_NEXT; break;
#endif
case WXK_NUMPAD_DELETE: // fall through
case WXK_DELETE: key = SCK_DELETE; break;
Logged In: YES
user_id=848685
The methods: dc->BeginDrawing() and dc->EndDrawing() are
also deprecated, there is no other method for them..
(same file in the methode DoPaint())