Vincent Povirk : comdlg32/tests: Rely on the Symbol font instead of Tahoma.
Module: wine Branch: master Commit: 3f3101138a3abd7c4e712624f0878fa8c76f4d6c URL: http://source.winehq.org/git/wine.git/?a=commit;h=3f3101138a3abd7c4e712624f0... Author: Vincent Povirk <vincent(a)codeweavers.com> Date: Tue Feb 16 13:55:05 2010 -0600 comdlg32/tests: Rely on the Symbol font instead of Tahoma. --- dlls/comdlg32/tests/fontdlg.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/comdlg32/tests/fontdlg.c b/dlls/comdlg32/tests/fontdlg.c index 422bf8d..885fb44 100644 --- a/dlls/comdlg32/tests/fontdlg.c +++ b/dlls/comdlg32/tests/fontdlg.c @@ -53,7 +53,7 @@ static void test_ChooseFontA(void) memset(&lfa, 0, sizeof(LOGFONTA)); lfa.lfHeight = -16; lfa.lfWeight = FW_NORMAL; - strcpy(lfa.lfFaceName, "Tahoma"); + strcpy(lfa.lfFaceName, "Symbol"); memset(&cfa, 0, sizeof(CHOOSEFONTA)); cfa.lStructSize = sizeof(cfa); @@ -66,7 +66,7 @@ static void test_ChooseFontA(void) ok(ret == TRUE, "ChooseFontA returned FALSE\n"); ok(lfa.lfHeight == -16, "Expected -16, got %i\n", lfa.lfHeight); ok(lfa.lfWeight == FW_NORMAL, "Expected FW_NORMAL, got %i\n", lfa.lfWeight); - ok(strcmp(lfa.lfFaceName, "Tahoma") == 0, "Expected Arial, got %s\n", lfa.lfFaceName); + ok(strcmp(lfa.lfFaceName, "Symbol") == 0, "Expected Symbol, got %s\n", lfa.lfFaceName); } START_TEST(fontdlg)
participants (1)
-
Alexandre Julliard