From: SourceForge.net <no...@so...> - 2006-11-07 21:04:33
|
Patches item #1592274, was opened at 2006-11-07 22:04 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462818&aid=1592274&group_id=51305 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mispunt (mispunt) Assigned to: Nobody/Anonymous (nobody) Summary: [wxScintilla]compile against wx2.7 Initial Comment: 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; ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=462818&aid=1592274&group_id=51305 |