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
This commit is contained in:
Przemyslaw Czerpak
2009-02-12 00:12:34 +00:00
parent f1435592e5
commit 40020e4a64
3 changed files with 13 additions and 6 deletions

View File

@@ -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

View File

@@ -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 );
}
}

View File

@@ -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 );