2011-04-13 21:31 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbxbp/xbpparthandler.prg
! fixed to not use != operator on strings
This commit is contained in:
@@ -16,6 +16,10 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2011-04-13 21:31 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* contrib/hbxbp/xbpparthandler.prg
|
||||
! fixed to not use != operator on strings
|
||||
|
||||
2011-04-13 12:18 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
|
||||
* contrib/hbxbp/xbpparthandler.prg
|
||||
! Fixed: fading inner XbpDialog() while moving the parent ( not owner ).
|
||||
|
||||
@@ -318,7 +318,7 @@ METHOD moveOwned( nOffSetX, nOffSetY ) CLASS XbpPartHandler
|
||||
|
||||
FOR EACH oXbp IN ::_aOwned
|
||||
IF __objHasMsg( oXbp, "MOVEWITHOWNER" ) .AND. oXbp:moveWithOwner
|
||||
IF oXbp:oParent:className() != "XBPDRAWINGAREA"
|
||||
IF !( oXbp:oParent:className() == "XBPDRAWINGAREA" )
|
||||
oPos := oXbp:oWidget:pos()
|
||||
oXbp:oWidget:move( oPos:x() + nOffSetX, oPos:y() + nOffSetY )
|
||||
ENDIF
|
||||
|
||||
Reference in New Issue
Block a user