// Hold Shift key down
#define wxACCEL_SHIFT 0x04
+ // Hold no other key
+#define wxACCEL_NORMAL 0x00
+
class WXDLLEXPORT wxAcceleratorEntry
{
public:
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); }