+ return DoCreate(size, wxDefaultSize, false, family, style,
+ weight, underlined, face, encoding);
+ }
+
+#if FUTURE_WXWIN_COMPATIBILITY_3_0
+ wxFont(const wxSize& pixelSize,
+ int family,
+ int style,
+ int weight,
+ bool underlined = false,
+ const wxString& face = wxEmptyString,
+ wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
+ {
+ (void)Create(pixelSize, (wxFontFamily)family, (wxFontStyle)style, (wxFontWeight)weight,
+ underlined, face, encoding);
+ }
+#endif