// ----------------------------------------------------------------------------
// wxAcceleratorEntry flags
-enum
+enum wxAcceleratorEntryFlags
{
wxACCEL_NORMAL = 0x0000, // no modifiers
wxACCEL_ALT = 0x0001, // hold Alt key down
wxAcceleratorEntry& operator=(const wxAcceleratorEntry& entry)
{
- Set(entry.m_flags, entry.m_keyCode, entry.m_command, entry.m_item);
+ if (&entry != this)
+ Set(entry.m_flags, entry.m_keyCode, entry.m_command, entry.m_item);
return *this;
}