you can't reset it.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16432
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void wxSimpleHelpProvider::AddHelp(wxWindowBase *window, const wxString& text)
{
void wxSimpleHelpProvider::AddHelp(wxWindowBase *window, const wxString& text)
{
+ m_hashWindows.Delete((long)window);
m_hashWindows.Put((long)window, text);
}
void wxSimpleHelpProvider::AddHelp(wxWindowID id, const wxString& text)
{
m_hashWindows.Put((long)window, text);
}
void wxSimpleHelpProvider::AddHelp(wxWindowID id, const wxString& text)
{
+ m_hashIds.Delete((long)id);
m_hashIds.Put(id, text);
}
m_hashIds.Put(id, text);
}