From b2bb920ff6dc4868a987976336f74543bcda3046 Mon Sep 17 00:00:00 2001 From: Mattia Barbon Date: Thu, 28 Aug 2003 20:26:53 +0000 Subject: [PATCH] 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 --- src/common/dynload.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.0