mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Rollback last change
svn path=/trunk/; revision=12175
This commit is contained in:
parent
478a3a1bd2
commit
04cae08bbc
1 changed files with 11 additions and 11 deletions
|
@ -22,7 +22,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: text.c,v 1.117 2004/12/17 17:40:29 gvg Exp $ */
|
||||
/* $Id: text.c,v 1.118 2004/12/18 09:39:14 gvg Exp $ */
|
||||
#include <w32k.h>
|
||||
|
||||
#include <ft2build.h>
|
||||
|
@ -1647,11 +1647,11 @@ NtGdiExtTextOut(
|
|||
IntLockFreeType;
|
||||
error = FT_Set_Pixel_Sizes(
|
||||
face,
|
||||
TextObj->logfont.lfWidth,
|
||||
/* FIXME should set character height if neg */
|
||||
(TextObj->logfont.lfHeight < 0 ?
|
||||
- TextObj->logfont.lfHeight :
|
||||
TextObj->logfont.lfHeight == 0 ? 11 : TextObj->logfont.lfHeight));
|
||||
TextObj->logfont.lfHeight),
|
||||
TextObj->logfont.lfWidth);
|
||||
IntUnLockFreeType;
|
||||
if (error)
|
||||
{
|
||||
|
@ -2030,11 +2030,11 @@ NtGdiGetCharWidth32(HDC hDC,
|
|||
|
||||
IntLockFreeType;
|
||||
FT_Set_Pixel_Sizes(face,
|
||||
TextObj->logfont.lfWidth,
|
||||
/* FIXME should set character height if neg */
|
||||
(TextObj->logfont.lfHeight < 0 ?
|
||||
- TextObj->logfont.lfHeight :
|
||||
TextObj->logfont.lfHeight == 0 ? 11 : TextObj->logfont.lfHeight));
|
||||
TextObj->logfont.lfHeight),
|
||||
TextObj->logfont.lfWidth);
|
||||
|
||||
for (i = FirstChar; i <= LastChar; i++)
|
||||
{
|
||||
|
@ -2188,11 +2188,11 @@ TextIntGetTextExtentPoint(PDC dc,
|
|||
|
||||
IntLockFreeType;
|
||||
error = FT_Set_Pixel_Sizes(face,
|
||||
TextObj->logfont.lfWidth,
|
||||
/* FIXME should set character height if neg */
|
||||
(TextObj->logfont.lfHeight < 0 ?
|
||||
- TextObj->logfont.lfHeight :
|
||||
TextObj->logfont.lfHeight == 0 ? 11 : TextObj->logfont.lfHeight));
|
||||
TextObj->logfont.lfHeight),
|
||||
TextObj->logfont.lfWidth);
|
||||
IntUnLockFreeType;
|
||||
if (error)
|
||||
{
|
||||
|
@ -2543,11 +2543,11 @@ NtGdiGetTextMetrics(HDC hDC,
|
|||
Face = FontGDI->face;
|
||||
IntLockFreeType;
|
||||
Error = FT_Set_Pixel_Sizes(Face,
|
||||
TextObj->logfont.lfWidth,
|
||||
/* FIXME should set character height if neg */
|
||||
(TextObj->logfont.lfHeight < 0 ?
|
||||
- TextObj->logfont.lfHeight :
|
||||
TextObj->logfont.lfHeight == 0 ? 11 : TextObj->logfont.lfHeight));
|
||||
(TextObj->logfont.lfHeight < 0 ?
|
||||
- TextObj->logfont.lfHeight :
|
||||
TextObj->logfont.lfHeight),
|
||||
TextObj->logfont.lfWidth);
|
||||
IntUnLockFreeType;
|
||||
if (0 != Error)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue