object was created, delete it.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39585
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#include "wx/ptr_scpd.h"
#include "wx/module.h"
#include "wx/except.h"
+#if wxUSE_FONTMAP
+#include "wx/fontmap.h"
+#endif
#if defined(__WXMSW__) && defined(__WXDEBUG__)
#include "wx/msw/msvcrt.h"
{
ConvertArgsToUnicode(argc, argv);
+#if wxUSE_FONTMAP
+ // If we created a font mapper during the above call,
+ // it will only be the base class, so delete it to allow
+ // app traits to create mapper.
+ delete (wxFontMapperBase*) wxFontMapperBase::Set(NULL);
+#endif
+
return wxEntry(argc, gs_initData.argv);
}