Fixed bug introduced in fs_zip.cpp when replacing wxHashTableLong
with wxHashMap. Made wxHashMap constructor explicit to prevent similar errors. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23298 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -3850,8 +3850,8 @@ bool wxGrid::Create(wxWindow *parent, wxWindowID id,
|
||||
style | wxWANTS_CHARS , name))
|
||||
return FALSE;
|
||||
|
||||
m_colMinWidths =GRID_HASH_SIZE ;
|
||||
m_rowMinHeights = GRID_HASH_SIZE ;
|
||||
m_colMinWidths = wxLongToLongHashMap(GRID_HASH_SIZE) ;
|
||||
m_rowMinHeights = wxLongToLongHashMap(GRID_HASH_SIZE) ;
|
||||
|
||||
Create() ;
|
||||
|
||||
|
Reference in New Issue
Block a user