summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXTest.c
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/tkMacOSXTest.c')
-rw-r--r--macosx/tkMacOSXTest.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/macosx/tkMacOSXTest.c b/macosx/tkMacOSXTest.c
index 26d68d9..a8d770b 100644
--- a/macosx/tkMacOSXTest.c
+++ b/macosx/tkMacOSXTest.c
@@ -278,12 +278,12 @@ InjectKeyEventObjCmd(
Tcl_Obj *const objv[])
{
static const char *const optionStrings[] = {
- "press", "release", "flagschanged", NULL};
- NSUInteger types[3] = {NSKeyDown, NSKeyUp, NSFlagsChanged};
+ "flagschanged", "press", "release", NULL};
+ NSUInteger types[3] = {NSFlagsChanged, NSKeyDown, NSKeyUp};
static const char *const argStrings[] = {
- "-shift", "-control", "-option", "-command", "-function", "-x", "-y", NULL};
- enum args {KEYEVENT_SHIFT, KEYEVENT_CONTROL, KEYEVENT_OPTION, KEYEVENT_COMMAND,
- KEYEVENT_FUNCTION, KEYEVENT_X, KEYEVENT_Y};
+ "-command", "-control", "-function", "-option", "-shift", "-x", "-y", NULL};
+ enum args {KEYEVENT_COMMAND, KEYEVENT_CONTROL, KEYEVENT_FUNCTION, KEYEVENT_OPTION,
+ KEYEVENT_SHIFT, KEYEVENT_X, KEYEVENT_Y};
int i, index, keysym, mods = 0, x = 0, y = 0;
NSString *chars = nil, *unmod = nil, *upper, *lower;
NSEvent *keyEvent;