X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6fc7a1ad1c370005d66286b586c50d49da764aed..9b026e31597c72e45195b0a5bd854df7d06cc06d:/interface/wx/accel.h diff --git a/interface/wx/accel.h b/interface/wx/accel.h index 974731fab6..580d30033d 100644 --- a/interface/wx/accel.h +++ b/interface/wx/accel.h @@ -16,13 +16,16 @@ enum wxAcceleratorEntryFlags /** hold Alt key down */ wxACCEL_ALT, - /** hold Ctrl key down */ + /** hold Ctrl key down, corresponds to Command key on OS X */ wxACCEL_CTRL, /** hold Shift key down */ wxACCEL_SHIFT, - /** Command key on OS X; identic to wxACCEL_CTRL on other platforms. */ + /** corresponds to real Ctrl key on OS X, identic to @c wxACCEL_CTRL on other platforms */ + wxACCEL_RAW_CTRL, + + /** deprecated, identic to @c wxACCEL_CTRL on all platforms. */ wxACCEL_CMD };