]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/accel.h
fixed memory leak in wxXmlResource introduced when fixing wxVector<> usage (patch...
[wxWidgets.git] / include / wx / accel.h
index 025b51b375f5013a805be2def8b4da5dbad6cd8a..ee2e3a08ad5817f4a1d8bf0cde92183a1038de97 100644 (file)
@@ -68,7 +68,8 @@ public:
 
     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;
     }