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:
parent
9e9eea73bc
commit
3398cf2cf6
@ -133,6 +133,44 @@ wxFontEncoding wxNativeFontInfo::GetEncoding() const
|
|||||||
return wxFONTENCODING_SYSTEM;
|
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)
|
bool wxNativeFontInfo::FromString(const wxString& s)
|
||||||
{
|
{
|
||||||
if (description)
|
if (description)
|
||||||
|
Loading…
Reference in New Issue
Block a user