Change WXK_SPECIALx constants to follow the other WXK_XXX values

These constants were defined in the middle of the wxKeyCode enum, value-wise,
which made it difficult to end new elements to the enum as they could clash
with the existing ones if they were simply added at the end.
This commit is contained in:
Vadim Zeitlin
2016-01-08 23:13:25 +01:00
parent 2585d73204
commit 777b7537c1

View File

@@ -2676,7 +2676,7 @@ enum wxKeyCode
WXK_COMMAND = WXK_CONTROL,
/* Hardware-specific buttons */
WXK_SPECIAL1 = 193,
WXK_SPECIAL1 = WXK_WINDOWS_MENU + 2, /* Skip WXK_RAW_CONTROL if necessary */
WXK_SPECIAL2,
WXK_SPECIAL3,
WXK_SPECIAL4,