Unnecessary const_ prefix removed (blindly).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29967 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-10-18 13:00:11 +00:00
parent 09a65e631a
commit c6fbe2f0c8
2 changed files with 5 additions and 5 deletions

View File

@@ -352,7 +352,7 @@ void wxSimpleHelpProvider::AddHelp(wxWindowBase *window, const wxString& text)
void wxSimpleHelpProvider::AddHelp(wxWindowID id, const wxString& text)
{
wxLongToStringHashMap::const_key_type key = (wxLongToStringHashMap::const_key_type)id;
wxLongToStringHashMap::key_type key = (wxLongToStringHashMap::key_type)id;
m_hashIds.erase(key);
m_hashIds[key] = text;
}