Prefix [putref] property names with putref_.
This commit is contained in:
parent
8f3b9d506b
commit
8056092909
|
@ -105,6 +105,8 @@ void write_name(FILE *h, var_t *v)
|
||||||
fprintf(h, "get_" );
|
fprintf(h, "get_" );
|
||||||
else if (is_attr( v->attrs, ATTR_PROPPUT ))
|
else if (is_attr( v->attrs, ATTR_PROPPUT ))
|
||||||
fprintf(h, "put_" );
|
fprintf(h, "put_" );
|
||||||
|
else if (is_attr( v->attrs, ATTR_PROPPUTREF ))
|
||||||
|
fprintf(h, "putref_" );
|
||||||
fprintf(h, "%s", v->name);
|
fprintf(h, "%s", v->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue