diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 73c049b5ab..234d4e0ccb 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,11 +17,17 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-12-19 22:48 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * contrib/hbwin/hbwapi.h + ! Fixed some wapi_ret_*() macros. This caused that several WAPI_TREEVIEW*() + functions were not returning a value. Thanks to Petr Chornyj for + reporting it. + 2009-12-19 09:23 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) * contrib/hbxbp/xbp.ch ! Removed QT_PTROFXBP() macro. I have retained QT_PTROF() macro because a lot of you - must still be using it in your code. It is sceduled to be + must still be using it in your code. It is sceduled to be removed after this release. 2009-12-19 09:14 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) diff --git a/harbour/contrib/hbwin/hbwapi.h b/harbour/contrib/hbwin/hbwapi.h index e6d9917dc8..72397b416c 100644 --- a/harbour/contrib/hbwin/hbwapi.h +++ b/harbour/contrib/hbwin/hbwapi.h @@ -87,10 +87,10 @@ #define wapi_ret_NINT( i ) ( hb_retnint( i ) ) #define wapi_ret_NI( i ) ( hb_retni( i ) ) #define wapi_ret_L( b ) ( hb_retl( b ) ) -#define wapi_ret_UINT( n ) ( hb_parni( n ) ) -#define wapi_ret_LONG( n ) ( hb_parnl( n ) ) -#define wapi_ret_WORD( n ) ( hb_parnl( n ) ) -#define wapi_ret_DWORD( n ) ( hb_parnl( n ) ) +#define wapi_ret_UINT( n ) ( hb_retni( n ) ) +#define wapi_ret_LONG( n ) ( hb_retnl( n ) ) +#define wapi_ret_WORD( n ) ( hb_retnl( n ) ) +#define wapi_ret_DWORD( n ) ( hb_retnl( n ) ) #define wapi_ret_HANDLE( h ) ( hb_retptr( h ) ) #define wapi_ret_HRESULT( hr ) ( hb_retnint( hr ) )