2010-01-05 02:39 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/src/common/hbtrace.c
    ! fixed casting for C++ mode in my recent modification
This commit is contained in:
Przemyslaw Czerpak
2010-01-05 01:39:48 +00:00
parent ccb74db573
commit 6e527f2ed1
2 changed files with 5 additions and 1 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-01-05 02:39 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/common/hbtrace.c
! fixed casting for C++ mode in my recent modification
2010-01-04 16:28 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbide/hbide.prg
* contrib/hbide/ideactions.prg

View File

@@ -246,7 +246,7 @@ static void hb_tracelog_( int level, const char * file, int line, const char * p
file, line, pszLevel, message );
#if defined( UNICODE )
MultiByteToWideChar( CP_ACP, 0, memcpy( message, buf.psz, sizeof( message ) ), -1,
MultiByteToWideChar( CP_ACP, 0, ( LPCSTR ) memcpy( message, buf.psz, sizeof( message ) ), -1,
buf.lp, HB_SIZEOFARRAY( buf.lp ) );
#endif
OutputDebugString( buf.lp );