/////////////////////////////////////////////////////////////////////////////
-// Name: common/init.cpp
+// Name: src/common/init.cpp
// Purpose: initialisation for the library
// Author: Vadim Zeitlin
// Modified by:
#include "wx/wxprec.h"
#ifdef __BORLANDC__
- #pragma hdrstop
+ #pragma hdrstop
#endif //__BORLANDC__
#ifndef WX_PRECOMP
#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);
}