peiyongz 2002/11/08 09:06:15 Modified: c/tools/NLS/Xlat Xlat_MsgCatalog.cpp Log: to build -miconv on hpux Revision Changes Path 1.7 +8 -1 xml-xerces/c/tools/NLS/Xlat/Xlat_MsgCatalog.cpp Index: Xlat_MsgCatalog.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/tools/NLS/Xlat/Xlat_MsgCatalog.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- Xlat_MsgCatalog.cpp 4 Nov 2002 15:24:50 -0000 1.6 +++ Xlat_MsgCatalog.cpp 8 Nov 2002 17:06:15 -0000 1.7 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.7 2002/11/08 17:06:15 peiyongz + * to build -miconv on hpux + * * Revision 1.6 2002/11/04 15:24:50 tng * C++ Namespace Support. * @@ -160,7 +163,11 @@ // bother checking, just do it simple and stupid. // char* outData = fTranscoder->transcode(msgText); - fwprintf(fOutFl, L"%3d %S\n", curId, outData); + // + // on hp, it is required that message line shall start with number + // w/o leading space. + // + fwprintf(fOutFl, L"%d %S\n", curId, outData); delete [] outData; }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]