fixes to wxFont mods for the case w/o native fontinfo struct
(could never possibly compile) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13183 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -83,7 +83,7 @@ wxNativeFontInfo *wxFontBase::GetNativeFontInfo() const
|
||||
wxNativeFontInfo *fontInfo = new wxNativeFontInfo();
|
||||
|
||||
fontInfo->SetPointSize(GetPointSize());
|
||||
fontInfo->SetFamily(GetFamily());
|
||||
fontInfo->SetFamily((wxFontFamily)GetFamily());
|
||||
fontInfo->SetStyle((wxFontStyle)GetStyle());
|
||||
fontInfo->SetWeight((wxFontWeight)GetWeight());
|
||||
fontInfo->SetUnderlined(GetUnderlined());
|
||||
@@ -257,7 +257,7 @@ bool wxNativeFontInfo::FromString(const wxString& s)
|
||||
token = tokenizer.GetNextToken();
|
||||
if ( !token.ToLong(&l) )
|
||||
return FALSE;
|
||||
family = (int)l;
|
||||
family = (wxFontFamily)l;
|
||||
|
||||
token = tokenizer.GetNextToken();
|
||||
if ( !token.ToLong(&l) )
|
||||
@@ -371,7 +371,7 @@ void wxNativeFontInfo::SetUnderlined(bool underlined_)
|
||||
|
||||
void wxNativeFontInfo::SetFaceName(wxString facename_)
|
||||
{
|
||||
facename = facename_;
|
||||
faceName = facename_;
|
||||
}
|
||||
|
||||
void wxNativeFontInfo::SetFamily(wxFontFamily family_)
|
||||
|
Reference in New Issue
Block a user