Cleanup of ad84d9f (r77846)

Remove the unnecessary 'CodePair' struct from a header, make the huge
keySymTab array const, and don't compile it for platforms that don't
use it, it's only used by wxX11
This commit is contained in:
Paul Cornett
2016-09-07 22:02:05 -07:00
parent a18fe083cc
commit 0bf38e11a3
2 changed files with 9 additions and 8 deletions

View File

@@ -30,13 +30,9 @@ typedef unsigned long WXKeySym;
int wxCharCodeXToWX(WXKeySym keySym);
WXKeySym wxCharCodeWXToX(int id);
#ifdef __WXX11__
int wxUnicodeCharXToWX(WXKeySym keySym);
// Xlib keysym-unicode charactor pair
struct CodePair {
unsigned int keySym;
int uniChar;
};
#endif
class wxIconBundle;