X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/110f32055efdffb06ab5c98fb45de2bb2b7a57d9..d7657f7562808945c95db96eb50808c4b61af1fe:/include/wx/msw/accel.h?ds=inline

diff --git a/include/wx/msw/accel.h b/include/wx/msw/accel.h
index 863af19f0d..af0a7ca0e7 100644
--- a/include/wx/msw/accel.h
+++ b/include/wx/msw/accel.h
@@ -29,6 +29,9 @@ class WXDLLEXPORT wxAcceleratorTable;
  // Hold Shift key down
 #define wxACCEL_SHIFT   0x04
 
+ // Hold no other key
+#define wxACCEL_NORMAL  0x00
+
 class WXDLLEXPORT wxAcceleratorEntry
 {
 public:
@@ -55,7 +58,7 @@ DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
 public:
     wxAcceleratorTable();
     wxAcceleratorTable(const wxString& resource); // Load from .rc resource
-    wxAcceleratorTable(int n, wxAcceleratorEntry entries[]); // Load from array
+    wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]); // Load from array
 
     // Copy constructors
     inline wxAcceleratorTable(const wxAcceleratorTable& accel) { Ref(accel); }