From: Mattia Barbon Date: Thu, 28 Aug 2003 20:26:53 +0000 (+0000) Subject: wxHashMap does not take the key type as constructor argument. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b2bb920ff6dc4868a987976336f74543bcda3046?ds=sidebyside wxHashMap does not take the key type as constructor argument. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23286 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/dynload.cpp b/src/common/dynload.cpp index a0844febf6..9494d42fb9 100644 --- a/src/common/dynload.cpp +++ b/src/common/dynload.cpp @@ -58,7 +58,7 @@ public: // TODO: create ms_classes on demand, why always preallocate it? virtual bool OnInit() { - wxPluginLibrary::ms_classes = new wxDLImports(wxKEY_STRING); + wxPluginLibrary::ms_classes = new wxDLImports; wxPluginManager::CreateManifest(); return TRUE; }