X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e4ffab299a1a214fbdd9e3941909323875b32e28..cd318cd31b8fd9876af7ba5f4878b90f446bd0f5:/src/msw/fontutil.cpp?ds=sidebyside diff --git a/src/msw/fontutil.cpp b/src/msw/fontutil.cpp index 8f9844def7..a74885be8a 100644 --- a/src/msw/fontutil.cpp +++ b/src/msw/fontutil.cpp @@ -234,36 +234,20 @@ wxFontEncoding wxGetFontEncFromCharSet(int cs) void wxFillLogFont(LOGFONT *logFont, const wxFont *font) { + wxNativeFontInfo fi; + // maybe we already have LOGFONT for this font? - wxNativeFontInfo *fontinfo = font->GetNativeFontInfo(); - if ( !fontinfo ) + const wxNativeFontInfo *pFI = font->GetNativeFontInfo(); + if ( !pFI ) { // use wxNativeFontInfo methods to build a LOGFONT for this font - fontinfo = new wxNativeFontInfo; - - // translate all font parameters - fontinfo->SetStyle((wxFontStyle)font->GetStyle()); - fontinfo->SetWeight((wxFontWeight)font->GetWeight()); - fontinfo->SetUnderlined(font->GetUnderlined()); - fontinfo->SetPointSize(font->GetPointSize()); - - // set the family/facename - fontinfo->SetFamily((wxFontFamily)font->GetFamily()); - wxString facename = font->GetFaceName(); - if ( !facename.empty() ) - { - fontinfo->SetFaceName(facename); - } + fi.InitFromFont(*font); - // deal with encoding now (it may override the font family and facename - // so do it after setting them) - fontinfo->SetEncoding(font->GetEncoding()); + pFI = &fi; } // transfer all the data to LOGFONT - *logFont = fontinfo->lf; - - delete fontinfo; + *logFont = pFI->lf; } wxFont wxCreateFontFromLogFont(const LOGFONT *logFont)