gdi32/tests: Better trace in test_fullname2_helper.

This commit is contained in:
Qian Hong 2012-09-11 01:05:28 +08:00 committed by Alexandre Julliard
parent e7dcb0e260
commit 4461612e33
1 changed files with 2 additions and 2 deletions

View File

@ -4107,7 +4107,7 @@ static void test_fullname2_helper(const char *Family)
ret = get_ttf_nametable_entry(hdc, TT_NAME_ID_FONT_FAMILY, bufW, buf_size, GetSystemDefaultLangID());
if (!ret)
{
trace("no localized name found.\n");
trace("no localized FONT_FAMILY found.\n");
ret = get_ttf_nametable_entry(hdc, TT_NAME_ID_FONT_FAMILY, bufW, buf_size, TT_MS_LANGID_ENGLISH_UNITED_STATES);
}
ok(ret, "FAMILY (family name) could not be read\n");
@ -4121,7 +4121,7 @@ static void test_fullname2_helper(const char *Family)
ret = get_ttf_nametable_entry(hdc, TT_NAME_ID_FULL_NAME, bufW, buf_size, GetSystemDefaultLangID());
if (!ret)
{
trace("no localized name found.\n");
trace("no localized FULL_NAME found.\n");
ret = get_ttf_nametable_entry(hdc, TT_NAME_ID_FULL_NAME, bufW, buf_size, TT_MS_LANGID_ENGLISH_UNITED_STATES);
}
ok(ret, "FULL_NAME (face name) could not be read\n");