Commit a6c9f726 authored by Claes Sjofors's avatar Claes Sjofors

Wbl print bugfix for text attributes in attribute objects

parent 83819507
......@@ -655,8 +655,9 @@ void wb_print_wbl::printText(wb_volume& v,
const char* ip;
int i;
int end = varSize - 1;
const char* name = adef.subName();
indent() << "Attr " << adef.name() << " = \"";
indent() << "Attr " << name << " = \"";
for (ip = text, i = 0; *ip != 0 && i < end; ip++) {
if (*ip == '"')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment