2011-01-08 12:20 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbxbp/xbpgeneric.prg
    ! hbxbp_SetEventLoop() - applied patch from Shum, thanks.

  * contrib/hbxbp/xbptoolbar.prg
    ! Fixed a badly ignored change in changed implementation 
      of connection slots.
This commit is contained in:
Pritpal Bedi
2011-01-08 20:27:22 +00:00
parent d6f45fa758
commit c882e9de07
3 changed files with 13 additions and 3 deletions

View File

@@ -16,6 +16,14 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-01-08 12:20 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbxbp/xbpgeneric.prg
! hbxbp_SetEventLoop() - applied patch from Shum, thanks.
* contrib/hbxbp/xbptoolbar.prg
! Fixed a badly ignored change in changed implementation
of connection slots.
2011-01-08 20:57 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* doc/howtosvn.txt
+ Added some comments to 'svn propset svn:keywords' command

View File

@@ -142,8 +142,10 @@ FUNCTION hbxbp_ClearEventBuffer()
FUNCTION hbxbp_SetEventLoop( oELoop )
LOCAL oLoop := t_oEventLoop
IF hb_isObject( oELoop )
t_oEventLoop := oELoop
IF PCount() == 1
IF hb_isObject( oELoop ) .OR. oELoop == NIL
t_oEventLoop := oELoop
ENDIF
ENDIF
RETURN oLoop

View File

@@ -214,7 +214,7 @@ METHOD XbpToolbar:destroy()
oBtn := aItem[ 2 ]
aItem := NIL
::disConnect( oBtn:oAction, "triggered(bool)" )
oBtn:oAction:disConnect( "triggered(bool)" )
oBtn:oAction := NIL
ELSE