2011-01-04 14:20 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbxbp/xbpbrowse.prg
! Changed: :addColumn( oCol ) -> RETURN SELF => RETURN oCol
* contrib/hbxbp/xbpgeneric.prg
! Modified: AppEvent() now returns a numeric always.
* contrib/hbxbp/xbpparthandler.prg
! A little optimization.
This commit is contained in:
@@ -16,7 +16,15 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2011-04-01 15:20 UTC+0200 Petr Chornyj (myorg63 at mail.ru)
|
||||
2011-01-04 14:20 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
|
||||
* contrib/hbxbp/xbpbrowse.prg
|
||||
! Changed: :addColumn( oCol ) -> RETURN SELF => RETURN oCol
|
||||
* contrib/hbxbp/xbpgeneric.prg
|
||||
! Modified: AppEvent() now returns a numeric always.
|
||||
* contrib/hbxbp/xbpparthandler.prg
|
||||
! A little optimization.
|
||||
|
||||
2011-01-04 15:20 UTC+0200 Petr Chornyj (myorg63 at mail.ru)
|
||||
+ hbxdiff/3rd/libxdiff/_hbconf.h
|
||||
+ Added config file placeholder.
|
||||
- hbxdiff/3rd/libxdiff/config.h
|
||||
|
||||
@@ -3249,7 +3249,7 @@ METHOD XbpBrowse:rightVisible()
|
||||
METHOD XbpBrowse:addColumn( oCol )
|
||||
AAdd( ::columns, oCol )
|
||||
::doConfigure() /* QT */
|
||||
RETURN Self
|
||||
RETURN oCol
|
||||
|
||||
/* Delete a column object from a browse */
|
||||
METHOD XbpBrowse:delColumn( nColumn )
|
||||
|
||||
@@ -229,7 +229,7 @@ FUNCTION NextAppEvent( mp1, mp2, oXbp )
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
FUNCTION AppEvent( mp1, mp2, oXbp, nTimeout )
|
||||
LOCAL nEvent
|
||||
LOCAL nEvent := 0
|
||||
LOCAL nThreadID := hb_threadId()
|
||||
|
||||
//DEFAULT nTimeout TO 0
|
||||
|
||||
@@ -197,15 +197,15 @@ METHOD addAsChild() CLASS XbpPartHandler
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD childFromName( nNameId ) CLASS XbpPartHandler
|
||||
LOCAL i, oXbp
|
||||
LOCAL i
|
||||
|
||||
FOR i := 1 TO len( ::aChildren )
|
||||
IF ::aChildren[ i ]:nNameID <> NIL .and. ::aChildren[ i ]:nNameID == nNameID
|
||||
oXbp := ::aChildren[ i ]
|
||||
IF ::aChildren[ i ]:nNameID <> NIL .AND. ::aChildren[ i ]:nNameID == nNameID
|
||||
RETURN ::aChildren[ i ]
|
||||
ENDIF
|
||||
NEXT
|
||||
|
||||
RETURN oXbp
|
||||
RETURN NIL
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user