Commit 4461612e authored by Qian Hong's avatar Qian Hong Committed by Alexandre Julliard

gdi32/tests: Better trace in test_fullname2_helper.

parent e7dcb0e2
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment