Dmitry Timoshkov : gdi32: Indent a block of code using 4 spaces instead of 5.

Alexandre Julliard julliard at winehq.org
Tue Jun 24 06:47:00 CDT 2008


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

Author: Dmitry Timoshkov <dmitry at codeweavers.com>
Date:   Tue Jun 24 16:13:07 2008 +0900

gdi32: Indent a block of code using 4 spaces instead of 5.

---

 dlls/gdi32/freetype.c |   15 +++++++--------
 1 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c
index f9df27b..fe7d2d5 100644
--- a/dlls/gdi32/freetype.c
+++ b/dlls/gdi32/freetype.c
@@ -3300,14 +3300,13 @@ GdiFont *WineEngCreateFontInstance(DC *dc, HFONT hfont)
 
     ret = alloc_font();
 
-     memcpy(&ret->font_desc.matrix, &dc->xformWorld2Vport, sizeof(FMAT2));
-     ret->font_desc.lf = lf;
-     ret->font_desc.can_use_bitmap = can_use_bitmap;
-     calc_hash(&ret->font_desc);
-     hflist = HeapAlloc(GetProcessHeap(), 0, sizeof(*hflist));
-     hflist->hfont = hfont;
-     list_add_head(&ret->hfontlist, &hflist->entry);
-
+    memcpy(&ret->font_desc.matrix, &dc->xformWorld2Vport, sizeof(FMAT2));
+    ret->font_desc.lf = lf;
+    ret->font_desc.can_use_bitmap = can_use_bitmap;
+    calc_hash(&ret->font_desc);
+    hflist = HeapAlloc(GetProcessHeap(), 0, sizeof(*hflist));
+    hflist->hfont = hfont;
+    list_add_head(&ret->hfontlist, &hflist->entry);
 
     /* If lfFaceName is "Symbol" then Windows fixes up lfCharSet to
        SYMBOL_CHARSET so that Symbol gets picked irrespective of the




More information about the wine-cvs mailing list