From e02168791ea7e94827065313d13ac23ab1326f7a Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Tue, 24 Jun 2008 16:13:07 +0900 Subject: [PATCH] gdi32: Indent a block of code using 4 spaces instead of 5. --- dlls/gdi32/freetype.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c index f9df27b8e25..fe7d2d50c4c 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 -- 2.11.4.GIT