Fix for link error

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33071 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2005-03-26 08:34:51 +00:00
parent 7e3c8a0223
commit e74d06a33b
2 changed files with 13 additions and 6 deletions

View File

@@ -163,6 +163,16 @@ wxFontMapper::~wxFontMapper()
{
}
/* static */
// Declared as returning wxFontMapper when wxUSE_GUI=1. Unfortunately, it's
// only implemented in wxBase library. Note that if the last resort
// is taken and GUI code tries to treat it as a real wxFontMapper
// then you'd be in trouble.
wxFontMapper *wxFontMapper::Get()
{
return (wxFontMapper*)wxFontMapperBase::Get();
}
wxFontEncoding
wxFontMapper::CharsetToEncoding(const wxString& charset, bool interactive)
{