2009-06-21 11:05 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbxbp/xbp.ch
    ! Restored non-debug behavior due to other problems.
      Now it won't work in codeblock though.

  * contrib/hbxbp/tests/demoxbp.prg
    ! Deleted debug calls from codeblocks in the meantime.
This commit is contained in:
Viktor Szakats
2009-06-21 09:06:06 +00:00
parent a1e51d358e
commit 69d54317ab
3 changed files with 11 additions and 3 deletions

View File

@@ -17,6 +17,14 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-06-21 11:05 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbxbp/xbp.ch
! Restored non-debug behavior due to other problems.
Now it won't work in codeblock though.
* contrib/hbxbp/tests/demoxbp.prg
! Deleted debug calls from codeblocks in the meantime.
2009-06-21 10:15 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbxbp/xbp.ch
! Fixed for non-debug. Currently it's suboptimal as non-debug

View File

@@ -613,13 +613,13 @@ STATIC FUNCTION Build_ComboBox( oWnd )
// Code block for selection:
// - assign to LOCAL variable using :getData()
// - display LOCAL variable using DispoutAt()
bAction := {|mp1, mp2, obj| obj:XbpSLE:getData(), hb_outDebug( 'Highlighted: '+cDay ) }
bAction := {|mp1, mp2, obj| obj:XbpSLE:getData() }
// Assign code block for selection with Up and Down keys
oCombo:ItemMarked := bAction
// Assign code block for selection by left mouse click in list box
oCombo:ItemSelected := {|mp1, mp2, obj| obj:XbpSLE:getData(), hb_outDebug( 'Selected: '+cDay ) }
oCombo:ItemSelected := {|mp1, mp2, obj| obj:XbpSLE:getData() }
// Copy data from array to combo box, then discard array
FOR i := 1 TO 7

View File

@@ -12,7 +12,7 @@
#endif
#else
/* TOFIX: To generate NOOP code. */
#xtranslate HB_OUTDEBUG( [<x>] ) => ( Do( NIL ) )
#xtranslate HB_OUTDEBUG( [<x>] ) =>
#endif
/*----------------------------------------------------------------------*/