Francois Gouget : gdiplus/tests: Spelling fix.

Alexandre Julliard julliard at winehq.org
Thu Jul 10 08:58:24 CDT 2008


Module: wine
Branch: master
Commit: 4b1f6310d96c6da4e6a13d117fa4ed247f63c6ec
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4b1f6310d96c6da4e6a13d117fa4ed247f63c6ec

Author: Francois Gouget <fgouget at free.fr>
Date:   Thu Jul 10 00:24:46 2008 +0200

gdiplus/tests: Spelling fix.

---

 dlls/gdiplus/tests/font.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/gdiplus/tests/font.c b/dlls/gdiplus/tests/font.c
index 8bf1289..96ed64c 100644
--- a/dlls/gdiplus/tests/font.c
+++ b/dlls/gdiplus/tests/font.c
@@ -25,7 +25,7 @@
 #define expect(expected, got) ok(got == expected, "Expected %.8x, got %.8x\n", expected, got)
 
 static const WCHAR arial[] = {'A','r','i','a','l','\0'};
-static const WCHAR nonexistant[] = {'T','h','i','s','F','o','n','t','s','h','o','u','l','d','N','o','t','E','x','i','s','t','\0'};
+static const WCHAR nonexistent[] = {'T','h','i','s','F','o','n','t','s','h','o','u','l','d','N','o','t','E','x','i','s','t','\0'};
 static const WCHAR MSSansSerif[] = {'M','S',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
 static const WCHAR MicrosoftSansSerif[] = {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
 static const WCHAR TimesNewRoman[] = {'T','i','m','e','s',' ','N','e','w',' ','R','o','m','a','n','\0'};
@@ -48,7 +48,7 @@ static void test_createfont(void)
     UINT i;
     REAL size;
 
-    stat = GdipCreateFontFamilyFromName(nonexistant, NULL, &fontfamily);
+    stat = GdipCreateFontFamilyFromName(nonexistent, NULL, &fontfamily);
     expect (FontFamilyNotFound, stat);
     stat = GdipDeleteFont(font);
     expect (InvalidParameter, stat);
@@ -161,10 +161,10 @@ static void test_fontfamily (void)
     /* FontFamily must be able to actually find the family.
      * If it can't, any subsequent calls should fail.
      */
-    stat = GdipCreateFontFamilyFromName (nonexistant, NULL, &family);
+    stat = GdipCreateFontFamilyFromName (nonexistent, NULL, &family);
     expect (FontFamilyNotFound, stat);
-    ok ((lstrcmpiW(itsName, nonexistant) != 0),
-        "Expected a non-zero value for nonexistant font!\n");
+    ok ((lstrcmpiW(itsName, nonexistent) != 0),
+        "Expected a non-zero value for nonexistent font!\n");
 
     /* Bitmap fonts are not found */
 todo_wine




More information about the wine-cvs mailing list