id	summary	reporter	owner	description	type	status	priority	resolution	keywords	cc
28	Use SWT.MOD1 instead of SWT.CONTROL	axel@…		"Especially when it comes to OKing the commit dialog.
The following snippet might help:
    
    /**
     * Windows uses Ctrl for menu accelerators, Mac OS X uses Command. This
     * method can be invoked to print the correct name of
     * the modifier key.
     */
    public static final String getNameOfMod1() {
        return getNameOfKey(SWT.MOD1);
    }

    public static final String getNameOfKey(int keyCode) {
        return LegacyActionTools.findModifierString(keyCode);
    }
"	defect	closed	major	fixed		
