diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d421bd6e5e..24ab2916d6 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,13 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-02-12 01:17 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/vm/extend.c + * formatting + + * harbour/contrib/gtwvg/wvgwin.c + * pacified few warnings + 2009-02-11 22:36 UTC+0100 Francesco Saverio Giudice (info/at/fsgiudice.com) * harbour/contrib/rddsql/sddfb/make_vc.bat * fixed typo diff --git a/harbour/contrib/gtwvg/wvgwin.c b/harbour/contrib/gtwvg/wvgwin.c index b328092e3e..e74b99e0de 100644 --- a/harbour/contrib/gtwvg/wvgwin.c +++ b/harbour/contrib/gtwvg/wvgwin.c @@ -1654,31 +1654,31 @@ HB_FUNC( WVG_TREEVIEW_SHOWEXPANDED ) hroot = TreeView_GetRoot( hwnd ); if( hroot ) { - TreeView_Expand( hwnd, hroot, iExpand ); + ( void ) TreeView_Expand( hwnd, hroot, iExpand ); if( iLevels >= 2 ) { hitem = TreeView_GetNextItem( hwnd, hroot, TVGN_CHILD ); while( hitem ) { - TreeView_Expand( hwnd, hitem, iExpand ); + ( void ) TreeView_Expand( hwnd, hitem, iExpand ); if( iLevels >= 3 ) { hitem1 = TreeView_GetNextItem( hwnd, hitem, TVGN_CHILD ); while( hitem1 ) { - TreeView_Expand( hwnd, hitem1, iExpand ); + ( void ) TreeView_Expand( hwnd, hitem1, iExpand ); if( iLevels >= 4 ) { hitem2 = TreeView_GetNextItem( hwnd, hitem1, TVGN_CHILD ); while( hitem2 ) { - TreeView_Expand( hwnd, hitem2, iExpand ); + ( void ) TreeView_Expand( hwnd, hitem2, iExpand ); if( iLevels >= 5 ) { hitem3 = TreeView_GetNextItem( hwnd, hitem2, TVGN_CHILD ); while( hitem3 ) { - TreeView_Expand( hwnd, hitem3, iExpand ); + ( void ) TreeView_Expand( hwnd, hitem3, iExpand ); hitem3 = TreeView_GetNextItem( hwnd, hitem3, TVGN_NEXT ); } } diff --git a/harbour/source/vm/extend.c b/harbour/source/vm/extend.c index cc6c9f99ba..e869658968 100644 --- a/harbour/source/vm/extend.c +++ b/harbour/source/vm/extend.c @@ -128,7 +128,7 @@ BOOL hb_extIsArray( int iParam ) pItem = hb_stackItemFromBase( iParam ); else return FALSE; - + if( HB_IS_BYREF( pItem ) ) pItem = hb_itemUnRef( pItem );