apparently digital unix's c compiler has a problem with the work 'readonly' (it appears to be a reserved word, as far as that compiler goes). So, I'm changing all occurences of the readonly form element attribute to read_only. Thanks to berkley@cs.wustl.edu (Berkley Shands) for the report and suggested fix.

git-svn-id: svn://10.0.0.236/trunk@1855 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
toshok
1998-05-18 21:58:00 +00:00
parent 1fd6c53148
commit 57a8a16052
4 changed files with 10 additions and 10 deletions

View File

@@ -645,7 +645,7 @@ struct lo_FormElementTextData_struct {
PA_Block name;
PA_Block default_text;
Bool disabled;
Bool readonly;
Bool read_only;
PA_Block current_text;
int32 size;
int32 max_size;
@@ -663,7 +663,7 @@ struct lo_FormElementTextareaData_struct {
PA_Block name;
PA_Block default_text;
Bool disabled;
Bool readonly;
Bool read_only;
PA_Block current_text;
int32 rows;
int32 cols;