[Doxygen-develop] Tag & localization
Brought to you by:
dimitri
From: <ca...@cr...> - 2004-01-05 14:26:46
|
Happy New New! Some problems in localized version of tag file: - invalid code page in tag file - invalid chars conversation at tag file Patch is attached: Index: src/doxygen.cpp =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /u/kp3softd/cvsroot/src/doxygen.cpp,v retrieving revision 1.156 diff -u -r1.156 doxygen.cpp --- src/doxygen.cpp 21 Nov 2003 13:10:38 -0000 1.156 +++ src/doxygen.cpp 5 Jan 2004 14:23:35 -0000 @@ -8262,7 +8262,10 @@ exit(1); } Doxygen::tagFile.setDevice(tag); - Doxygen::tagFile << "<?xml version=3D'1.0' encoding=3D'ISO-8859-1' = standalone=3D'yes'?>" << endl; +#if QT_VERSION >=3D 200 + Doxygen::tagFile.setEncoding(QTextStream::Latin1); +#endif + Doxygen::tagFile << "<?xml version=3D'1.0' encoding=3D'" + = theTranslator->idLanguageCharset() + "' standalone=3D'yes'?>" << endl; Doxygen::tagFile << "<tagfile>" << endl; } =20 Thanks. |