wineps.drv: Remove unnecessary changes included with vertical font work.
This commit is contained in:
parent
024ece50e8
commit
72b78e7a0a
|
@ -238,7 +238,7 @@ BOOL PSDRV_WriteSetBuiltinFont(PHYSDEV dev)
|
|||
PSDRV_PDEVICE *physDev = get_psdrv_dev( dev );
|
||||
|
||||
return PSDRV_WriteSetFont(dev, physDev->font.fontinfo.Builtin.afm->FontName,
|
||||
physDev->font.size, physDev->font.escapement, FALSE, FALSE);
|
||||
physDev->font.size, physDev->font.escapement, FALSE);
|
||||
}
|
||||
|
||||
BOOL PSDRV_WriteBuiltinGlyphShow(PHYSDEV dev, LPCWSTR str, INT count)
|
||||
|
|
|
@ -353,7 +353,7 @@ BOOL PSDRV_WriteSetDownloadFont(PHYSDEV dev, BOOL vertical)
|
|||
escapement += 900;
|
||||
|
||||
PSDRV_WriteSetFont(dev, ps_name, physDev->font.size, escapement,
|
||||
is_fake_italic( dev->hdc ), (lf.lfFaceName[0] == '@'));
|
||||
is_fake_italic( dev->hdc ));
|
||||
|
||||
HeapFree(GetProcessHeap(), 0, ps_name);
|
||||
HeapFree(GetProcessHeap(), 0, potm);
|
||||
|
|
|
@ -571,7 +571,7 @@ BOOL PSDRV_WriteCurveTo(PHYSDEV dev, POINT pts[3])
|
|||
return PSDRV_WriteSpool(dev, buf, strlen(buf));
|
||||
}
|
||||
|
||||
BOOL PSDRV_WriteSetFont(PHYSDEV dev, const char *name, matrix size, INT escapement, BOOL fake_italic, BOOL vertical)
|
||||
BOOL PSDRV_WriteSetFont(PHYSDEV dev, const char *name, matrix size, INT escapement, BOOL fake_italic)
|
||||
{
|
||||
char *buf;
|
||||
|
||||
|
|
|
@ -500,7 +500,7 @@ extern BOOL PSDRV_WriteStroke(PHYSDEV dev) DECLSPEC_HIDDEN;
|
|||
extern BOOL PSDRV_WriteRectangle(PHYSDEV dev, INT x, INT y, INT width, INT height) DECLSPEC_HIDDEN;
|
||||
extern BOOL PSDRV_WriteRRectangle(PHYSDEV dev, INT x, INT y, INT width, INT height) DECLSPEC_HIDDEN;
|
||||
extern BOOL PSDRV_WriteSetFont(PHYSDEV dev, const char *name, matrix size, INT escapement,
|
||||
BOOL fake_italic, BOOL vertical) DECLSPEC_HIDDEN;
|
||||
BOOL fake_italic) DECLSPEC_HIDDEN;
|
||||
extern BOOL PSDRV_WriteGlyphShow(PHYSDEV dev, LPCSTR g_name) DECLSPEC_HIDDEN;
|
||||
extern BOOL PSDRV_WriteSetPen(PHYSDEV dev) DECLSPEC_HIDDEN;
|
||||
extern BOOL PSDRV_WriteArc(PHYSDEV dev, INT x, INT y, INT w, INT h,
|
||||
|
|
Loading…
Reference in New Issue