Commit 59d1c763 authored by claes's avatar claes

CastId attributes not displayed

parent 4f56fa4f
...@@ -739,6 +739,9 @@ int CnvWblToHtml::attribute_exec() ...@@ -739,6 +739,9 @@ int CnvWblToHtml::attribute_exec()
char attrtype_href[80]; char attrtype_href[80];
int lng_sts = 1; int lng_sts = 1;
if ( strcmp( ctx->rw->attr_typeref, "CastId") == 0)
return 1;
if ( Lng::current() != lng_eLanguage_en_us) if ( Lng::current() != lng_eLanguage_en_us)
lng_sts = ctx->rw->read_lng( ctx->rw->class_name, ctx->rw->attr_name); lng_sts = ctx->rw->read_lng( ctx->rw->class_name, ctx->rw->attr_name);
......
...@@ -204,6 +204,9 @@ int CnvWblToPs::attribute_exec() ...@@ -204,6 +204,9 @@ int CnvWblToPs::attribute_exec()
int page; int page;
int lng_sts = 1; int lng_sts = 1;
if ( strcmp( ctx->rw->attr_typeref, "CastId") == 0)
return 1;
if ( Lng::current() != lng_eLanguage_en_us) if ( Lng::current() != lng_eLanguage_en_us)
lng_sts = ctx->rw->read_lng( ctx->rw->class_name, ctx->rw->attr_name); lng_sts = ctx->rw->read_lng( ctx->rw->class_name, ctx->rw->attr_name);
......
...@@ -185,6 +185,9 @@ int CnvWblToXtthelp::attribute_exec() ...@@ -185,6 +185,9 @@ int CnvWblToXtthelp::attribute_exec()
char *s; char *s;
int lng_sts = 1; int lng_sts = 1;
if ( strcmp( ctx->rw->attr_typeref, "CastId") == 0)
return 1;
if ( Lng::current() != lng_eLanguage_en_us) if ( Lng::current() != lng_eLanguage_en_us)
lng_sts = ctx->rw->read_lng( ctx->rw->class_name, ctx->rw->attr_name); lng_sts = ctx->rw->read_lng( ctx->rw->class_name, ctx->rw->attr_name);
......
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