Use GdiPlus::Status enum to represent status of GDI+ operation

This commit is contained in:
Artur Wieczorek
2020-04-05 21:55:46 +02:00
parent f0e458e25c
commit 810c1be640

View File

@@ -1109,8 +1109,8 @@ wxGDIPlusFontData::Init(const wxString& name,
for ( int j = 0 ; j < found; j++ ) for ( int j = 0 ; j < found; j++ )
{ {
wchar_t familyName[LF_FACESIZE]; wchar_t familyName[LF_FACESIZE];
int rc = gs_pFontFamily[j].GetFamilyName(familyName); Status rc = gs_pFontFamily[j].GetFamilyName(familyName);
if ( rc == 0 && name == familyName ) if ( rc == Ok && name == familyName )
{ {
// Store reference to the cached FontFamily to avoid calling Font::GetFamily() // Store reference to the cached FontFamily to avoid calling Font::GetFamily()
// for private font because calling this method apparently is messing up something // for private font because calling this method apparently is messing up something