From e3ed773e362c606f62b28f5e7074f798015b5be0 Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Fri, 28 Sep 2012 07:44:55 +0000 Subject: [PATCH] 2012-09-28 09:44 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) * harbour/contrib/xhb/xhbfunc.c ! fixed typo with reverted function names in HB_BITISSET() -> HB_BITTEST() wrapper --- harbour/ChangeLog | 5 +++++ harbour/contrib/xhb/xhbfunc.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index c78a6eae58..2a1e0156e8 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,11 @@ The license applies to all entries newer than 2009-04-28. */ +2012-09-28 09:44 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) + * harbour/contrib/xhb/xhbfunc.c + ! fixed typo with reverted function names in + HB_BITISSET() -> HB_BITTEST() wrapper + 2012-09-28 01:56 UTC+0200 Viktor Szakats (harbour syenar.net) * contrib/hbnf/aredit.prg * contrib/hbnf/calendar.prg diff --git a/harbour/contrib/xhb/xhbfunc.c b/harbour/contrib/xhb/xhbfunc.c index 6360d62446..423795fb1e 100644 --- a/harbour/contrib/xhb/xhbfunc.c +++ b/harbour/contrib/xhb/xhbfunc.c @@ -350,7 +350,7 @@ HB_FUNC_EXTERN( HB_METHODNAME ) ; HB_FUNC( METHODNAME ) { HB_FUNC_EXTERN( HB_LIBLOAD ) ; HB_FUNC( LIBLOAD ) { HB_FUNC_EXEC( HB_LIBLOAD ); } HB_FUNC_EXTERN( HB_LIBFREE ) ; HB_FUNC( LIBFREE ) { HB_FUNC_EXEC( HB_LIBFREE ); } HB_FUNC_EXTERN( DO ) ; HB_FUNC( HB_LIBDO ) { HB_FUNC_EXEC( DO ); } -HB_FUNC_EXTERN( HB_BITISSET ) ; HB_FUNC( HB_BITTEST ) { HB_FUNC_EXEC( HB_BITTEST ); } +HB_FUNC_EXTERN( HB_BITTEST ) ; HB_FUNC( HB_BITISSET ) { HB_FUNC_EXEC( HB_BITTEST ); } HB_FUNC_EXTERN( HB_IDLESLEEP ) ; HB_FUNC( SECONDSSLEEP ) { HB_FUNC_EXEC( HB_IDLESLEEP ); } HB_FUNC_EXTERN( __DYNSN2SYM ) ; HB_FUNC( HB_FUNCPTR ) { HB_FUNC_EXEC( __DYNSN2SYM ); } HB_FUNC_EXTERN( HB_VALTOEXP ) ; HB_FUNC( VALTOPRGEXP ) { HB_FUNC_EXEC( HB_VALTOEXP ); }