If a base font mapper object was created prematurely before the traints
object was created, delete it. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39585 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -36,6 +36,9 @@
|
||||
#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"
|
||||
@@ -449,6 +452,13 @@ int wxEntry(int& argc, char **argv)
|
||||
{
|
||||
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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user