From c356c014fef2045eb78952434da2809f25df9c31 Mon Sep 17 00:00:00 2001 From: Alexander Morozov Date: Tue, 25 Oct 2011 15:46:42 +0400 Subject: [PATCH] gdi32: Use static const, fix a too long line. --- dlls/gdi32/font.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/dlls/gdi32/font.c b/dlls/gdi32/font.c index c4d60cd..cd93af1 100644 --- a/dlls/gdi32/font.c +++ b/dlls/gdi32/font.c @@ -1123,7 +1123,12 @@ BOOL WINAPI GetTextExtentExPointW( HDC hdc, LPCWSTR str, INT count, BOOL ret = FALSE; TEXTMETRICW tm; PHYSDEV dev; - WCHAR test[] = {'T','h','e',' ','B','i','t','B','l','t',' ','f','u','n','c','t','i','o','n',' ','p','e','r','f','o','r','m','s',' ','a',' ','b','i','t','-','b','l','o','c','k',' ','t','r','a','n','s','f','e','r',' ','o','f',' ','t','h','e',' ','c','o','l','o','r',' ','d','a','t','a',' ','i','i','j','i','j','l','i','i','j','i','j','l','i','i','j','i','j','l','i','i','j','i','j','l','i','i','j',0}; + static const WCHAR test[] = {'T','h','e',' ','B','i','t','B','l','t',' ', + 'f','u','n','c','t','i','o','n',' ','p','e','r','f','o','r','m','s',' ', + 'a',' ','b','i','t','-','b','l','o','c','k',' ','t','r','a','n','s','f','e','r',' ', + 'o','f',' ','t','h','e',' ','c','o','l','o','r',' ','d','a','t','a', + ' ','i','i','j','i','j','l','i','i','j','i','j','l','i','i','j','i', + 'j','l','i','i','j','i','j','l','i','i','j',0}; DEFETER_FUNC(etersoft_1version); -- 1.7.6.4