From: <ad...@us...> - 2003-02-17 17:08:11
|
Update of /cvsroot/bdadev/TuneReqStore In directory sc8-pr-cvs1:/tmp/cvs-serv9897 Modified Files: TuneReqStore.h TuneRequestStore.cpp Log Message: Fix String bugs Index: TuneReqStore.h =================================================================== RCS file: /cvsroot/bdadev/TuneReqStore/TuneReqStore.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** TuneReqStore.h 17 Feb 2003 16:57:41 -0000 1.1.1.1 --- TuneReqStore.h 17 Feb 2003 17:08:07 -0000 1.2 *************** *** 3,7 **** /* File created by MIDL compiler version 5.01.0164 */ ! /* at Mon Feb 17 16:46:53 2003 */ /* Compiler settings for C:\Source\Bdadev\TuneReqStore\TuneReqStore.idl: --- 3,7 ---- /* File created by MIDL compiler version 5.01.0164 */ ! /* at Mon Feb 17 17:02:57 2003 */ /* Compiler settings for C:\Source\Bdadev\TuneReqStore\TuneReqStore.idl: Index: TuneRequestStore.cpp =================================================================== RCS file: /cvsroot/bdadev/TuneReqStore/TuneRequestStore.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** TuneRequestStore.cpp 17 Feb 2003 16:57:42 -0000 1.1.1.1 --- TuneRequestStore.cpp 17 Feb 2003 17:08:07 -0000 1.2 *************** *** 444,448 **** else { ! wprintf(escape, L"_%x", (unsigned int)pString[i]); strOut.append(escape); bEscaped = true; --- 444,448 ---- else { ! swprintf(escape, L"_%x", (unsigned int)pString[i]); strOut.append(escape); bEscaped = true; *************** *** 580,584 **** { static wchar_t ObjectName[20]; ! wprintf(ObjectName, "Channel%d", ChannelIndex + 1); return ObjectName; } --- 580,584 ---- { static wchar_t ObjectName[20]; ! swprintf(ObjectName, L"Channel%d", ChannelIndex + 1); return ObjectName; } |