diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 8f0f709939..ae6bd0690f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,11 @@ The license applies to all entries newer than 2009-04-28. */ +2011-03-01 13:54 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) + * contrib/hbxbp/xbptreeview.prg + ! Added missing elements on return values of two methods. + Thanks Shum. + 2011-03-01 15:35 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * examples/hbqt_tut/win01.prg * examples/hbqt_tut/win10.prg diff --git a/harbour/contrib/hbxbp/xbptreeview.prg b/harbour/contrib/hbxbp/xbptreeview.prg index 9f1c7bdd22..8487f96350 100644 --- a/harbour/contrib/hbxbp/xbptreeview.prg +++ b/harbour/contrib/hbxbp/xbptreeview.prg @@ -515,13 +515,13 @@ METHOD XbpTreeViewItem:delItem( oItem ) METHOD XbpTreeViewItem:getChildItems() - RETURN NIL + RETURN ::aChilds /*----------------------------------------------------------------------*/ METHOD XbpTreeViewItem:getParentItem() - RETURN NIL + RETURN ::oParent /*----------------------------------------------------------------------*/