added stabs for missing wxNativeFontInfo methods when using Pango

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23892 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2003-09-24 16:07:07 +00:00
parent 9e9eea73bc
commit 3398cf2cf6

View File

@ -133,6 +133,44 @@ wxFontEncoding wxNativeFontInfo::GetEncoding() const
return wxFONTENCODING_SYSTEM;
}
void wxNativeFontInfo::SetPointSize(int WXUNUSED(pointsize))
{
wxFAIL_MSG( _T("not implemented") );
}
void wxNativeFontInfo::SetStyle(wxFontStyle WXUNUSED(style))
{
wxFAIL_MSG( _T("not implemented") );
}
void wxNativeFontInfo::SetWeight(wxFontWeight WXUNUSED(weight))
{
wxFAIL_MSG( _T("not implemented") );
}
void wxNativeFontInfo::SetUnderlined(bool WXUNUSED(underlined))
{
wxFAIL_MSG( _T("not implemented") );
}
void wxNativeFontInfo::SetFaceName(wxString WXUNUSED(facename))
{
wxFAIL_MSG( _T("not implemented") );
}
void wxNativeFontInfo::SetFamily(wxFontFamily WXUNUSED(family))
{
wxFAIL_MSG( _T("not implemented") );
}
void wxNativeFontInfo::SetEncoding(wxFontEncoding WXUNUSED(encoding))
{
wxFAIL_MSG( _T("not implemented") );
}
bool wxNativeFontInfo::FromString(const wxString& s)
{
if (description)