[Doxygen-develop] Bug in RTF Output in Doxygen 1.2.8.1
Brought to you by:
dimitri
From: Hauke J. <hc...@ko...> - 2001-07-24 08:02:09
|
Dear Doxygen Fans! I tried version 1.2.8.1 of doxygen and noticed a minor glitch: In this version the gifs in the rtf output are missing. When looking at the rtf in word, i noticed that in Version 1.2.6 EINF=DCGENGRAFIK class_CWapResult_coll_graph.gif \*FORMATVERBINDEN was inserted, while in 1.2.8.1 EINF=DCGENGRAFIK classCWapResult_coll_graph.gif \*FORMATVERBINDEN was inserted. A colleauge tried the following patch, but i did not tested it. He had the same problem and reportet that the patch worked. --- rtfgen.cpp.orig Fri Jul 20 13:39:02 2001 +++ rtfgen.cpp Thu Jul 19 19:14:18 2001 @@ -2547,7 +2547,7 @@ t << "{" << endl; t << Rtf_Style_Reset << endl; t << "\\par\\pard \\qc {\\field\\flddirty {\\*\\fldinst INCLUDEPICTURE "; - t << g.diskName() << ".gif"; + t << convertNameToFile(g.diskName()) << ".gif"; t << " \\\\*MERGEFORMAT}{\\fldrslt IMAGE}}\\par" << endl; t << "}" << endl; } Greetings Hauke Jans --=20 S.E.S.A. Software und Systeme AG Hauke Jans Stolberger Stra=DFe 374 D-50933 K=F6ln Phone +49 (0)221/485-1160 Fax +49 (0)221/485-1170 Email hau...@ko... WWW www.sesa.de |