diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e075dcc455..8d6c4e13dd 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,12 +8,21 @@ 2002-12-01 13:30 UTC+0100 Foo Bar */ +2008-01-29 01:00 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * ChangeLog + ! Typos. + + * utils/hbpp/hbpplib.c + ! Replaced RTE code 1001 with 1002. + (almost the same error condition, but better have + it different to avoid any support confusions). + 2008-01-28 12:10 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * include/hbapierr.h * source/rtl/errorapi.c ! Removed HB_ERR_SS_TOOLS non-core #define (formerly used by - /contrib/hbct from core header. - ! Removed non-core related error API call hb_errRT_TOOLS() + /contrib/hbct) from core header. + ! Removed non-core related Error API call hb_errRT_TOOLS() (functionality was similar to hb_errRT_BASE()) * contrib/hbct/ctnet.c @@ -31,7 +40,7 @@ ! Missing LIBNAME change now done. * ChangeLog - ! Missing dbfdbt -> rdddbt name changed added to prev entry. + ! Missing dbfdbt -> rdddbt name change added to prev entry. 2008-01-27 17:24 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * contrib/hbmysql/make_b32.bat @@ -169,9 +178,7 @@ RT/BASE: 6001-6999 runner: 6101-6199 Internal/misc: 6001-6999 - Internal/RDD: 7001-7999 - CDX: 7001-7099 - NTX: 7101-7199 + Internal/RDD: 9301-9399 NOTE: If you find some more 9999s in the core code, pls tell. diff --git a/harbour/utils/hbpp/hbpplib.c b/harbour/utils/hbpp/hbpplib.c index 64d9885c17..47036b8c6a 100644 --- a/harbour/utils/hbpp/hbpplib.c +++ b/harbour/utils/hbpp/hbpplib.c @@ -226,7 +226,7 @@ void hb_compGenError( HB_COMP_DECL, char * szErrors[], char cPrefix, int iError, deallocated here */ snprintf( buffer, sizeof( buffer ), szErrors[ iError - 1 ], szError1, szError2 ); - pError = hb_errRT_New( ES_ERROR, "PP", 1001, ( ULONG ) iError, buffer, NULL, 0, EF_NONE | EF_CANDEFAULT ); + pError = hb_errRT_New( ES_ERROR, "PP", 1002, ( ULONG ) iError, buffer, NULL, 0, EF_NONE | EF_CANDEFAULT ); hb_errLaunch( pError ); hb_errRelease( pError );