Commit 56412621 authored by claes's avatar claes

Bugfix in documentation link

parent 2e9e4553
......@@ -1019,10 +1019,10 @@ int CnvReadWbl::doc_add( char *line)
strcpy( doc_link_ref[doc_link_cnt], line_part[i]);
else {
if ( i == 2)
strcpy( doc_clink_text[doc_clink_cnt], line_part[i]);
strcpy( doc_link_text[doc_link_cnt], line_part[i]);
else {
strcat( doc_clink_text[doc_clink_cnt], " ");
strcat( doc_clink_text[doc_clink_cnt], line_part[i]);
strcat( doc_link_text[doc_link_cnt], " ");
strcat( doc_link_text[doc_link_cnt], line_part[i]);
}
}
}
......
......@@ -845,6 +845,7 @@ int CnvWblToH::cixstr_to_classid( char *cix_str, pwr_tClassId *cid)
{ "pwr_eCix_Value", pwr_eCix_Value},
{ "pwr_eCix_Method", pwr_eCix_Method},
{ "pwr_eCix_RtMethod", pwr_eCix_RtMethod},
{ "pwr_eCix_ExternVolume", pwr_eCix_ExternVolume},
{ "", 0}};
found = 0;
......
......@@ -572,13 +572,13 @@ endl <<
html_clf->f <<
"</XMP>" << endl;
for ( i = 0; i < ctx->rw->doc_link_cnt; i++) {
html_clf->f <<
" &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF=\"" << ctx->rw->doc_link_ref[i] << "\" TARGET=\"_self\"><FONT size=\"-1\"> " << ctx->rw->doc_link_text[i] <<"</FONT></A><BR>" << endl;
}
for ( i = 0; i < ctx->rw->doc_clink_cnt; i++) {
html_clf->f <<
" &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF=\"" << ctx->rw->doc_clink_ref[i] << "\" TARGET=\"_self\"><FONT size=\"-1\"> " << ctx->rw->doc_clink_text[i] <<"</FONT></A><BR>" << endl;
}
for ( i = 0; i < ctx->rw->doc_link_cnt; i++) {
html_clf->f <<
" &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF=\"" << ctx->rw->doc_link_ref[i] << "\" TARGET=\"_self\"><FONT size=\"-1\"> " << ctx->rw->doc_link_text[i] <<"</FONT></A><BR>" << endl;
}
html_clf->f <<
"</DIV>" << endl;
......
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