OS/2 fixes for this week.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11015 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -244,7 +244,7 @@ void wxMenu::UpdateAccel(
|
||||
if (pAccel)
|
||||
m_vAccels[n] = pAccel;
|
||||
else
|
||||
m_vAccels.Remove(n);
|
||||
m_vAccels.RemoveAt(n);
|
||||
}
|
||||
|
||||
if (IsAttached())
|
||||
@@ -448,7 +448,7 @@ wxMenuItem* wxMenu::DoRemove(
|
||||
if (n != wxNOT_FOUND)
|
||||
{
|
||||
delete m_vAccels[n];
|
||||
m_vAccels.Remove(n);
|
||||
m_vAccels.RemoveAt(n);
|
||||
}
|
||||
|
||||
#endif // wxUSE_ACCEL
|
||||
|
Reference in New Issue
Block a user