Pass "Manual Feed" as short input slot name.

This commit is contained in:
Carl Sopchak 2002-07-10 20:33:24 +00:00 committed by Alexandre Julliard
parent b810b53b0a
commit 0e8da89122
1 changed files with 1 additions and 2 deletions

View File

@ -774,7 +774,7 @@ PPD *PSDRV_ParsePPD(char *fname)
!strcmp ("True", tuple.option)) !strcmp ("True", tuple.option))
{ {
/* FIXME - should check for failure */ /* FIXME - should check for failure */
PSDRV_AddSlot(ppd, NULL, "Manual Feed", tuple.value, DMBIN_MANUAL); PSDRV_AddSlot(ppd, "Manual Feed", "Manual Feed", tuple.value, DMBIN_MANUAL);
tuple.value = NULL; tuple.value = NULL;
} }
@ -847,4 +847,3 @@ PPD *PSDRV_ParsePPD(char *fname)
return ppd; return ppd;
} }