X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=form%2Ffld_just.c;h=050e66f5d311823240ef4dbbd6b640e7a8907235;hp=98e4649d8d18832994bd8a03431f417d38290c89;hb=9028a6e05bf66890591f074dd510a43c10f4e984;hpb=04d942c3d98cf0a929c6afb17be8c10d4ae39af0 diff --git a/form/fld_just.c b/form/fld_just.c index 98e4649d..050e66f5 100644 --- a/form/fld_just.c +++ b/form/fld_just.c @@ -33,13 +33,13 @@ #include "form.priv.h" -MODULE_ID("$Id: fld_just.c,v 1.15 2020/05/24 01:40:20 anonymous.maarten Exp $") +MODULE_ID("$Id: fld_just.c,v 1.16 2020/12/11 23:16:37 tom Exp $") /*--------------------------------------------------------------------------- | Facility : libnform | Function : int set_field_just(FIELD *field, int just) | -| Description : Set the fields type of justification. +| Description : Set the field's type of justification. | | Return Values : E_OK - success | E_BAD_ARGUMENT - one of the arguments was incorrect @@ -60,7 +60,7 @@ set_field_just(FIELD *field, int just) Normalize_Field(field); if (field->just != just) { - field->just = (short) just; + field->just = (short)just; res = _nc_Synchronize_Attributes(field); } else @@ -73,7 +73,7 @@ set_field_just(FIELD *field, int just) | Facility : libnform | Function : int field_just( const FIELD *field ) | -| Description : Retrieve the fields type of justification +| Description : Retrieve the field's type of justification | | Return Values : The justification type. +--------------------------------------------------------------------------*/