X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b82d2a004d854d821078528ec586f17ea653085d..267484bc4fb1ce9a5da47cb496e9a8db04bfae96:/include/wx/accel.h diff --git a/include/wx/accel.h b/include/wx/accel.h index 986ea9b66d..02bac45939 100644 --- a/include/wx/accel.h +++ b/include/wx/accel.h @@ -44,10 +44,25 @@ class WXDLLEXPORT wxAcceleratorEntry public: wxAcceleratorEntry(int flags = 0, int keyCode = 0, int cmd = 0, wxMenuItem *item = NULL) + : m_flags(flags) + , m_keyCode(keyCode) + , m_command(cmd) + , m_item(item) + { } + + wxAcceleratorEntry(const wxAcceleratorEntry& entry) + : m_flags(entry.m_flags) + , m_keyCode(entry.m_keyCode) + , m_command(entry.m_command) + , m_item(entry.m_item) + { } + + wxAcceleratorEntry& operator=(const wxAcceleratorEntry& entry) { - Set(flags, keyCode, cmd, item); + Set(entry.m_flags, entry.m_keyCode, entry.m_command, entry.m_item); + return *this; } - + void Set(int flags, int keyCode, int cmd, wxMenuItem *item = NULL) { m_flags = flags;