diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 63560b52fb..e6597bd022 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,11 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-06-17 00:10 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) + * harbour/contrib/hbxbp/tests/demoxbp.prg + ! Commented out menu option. + Scheduled to be reactivated once event handlers will be in place. + 2009-06-17 00:04 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) * harbour/contrib/hbxbp/hbxbp.hbc ! Removed "hbwin" dependency introduced in prev commit. diff --git a/harbour/contrib/hbxbp/tests/demoxbp.prg b/harbour/contrib/hbxbp/tests/demoxbp.prg index f4414d2895..1aa4a10423 100644 --- a/harbour/contrib/hbxbp/tests/demoxbp.prg +++ b/harbour/contrib/hbxbp/tests/demoxbp.prg @@ -197,10 +197,12 @@ STATIC FUNCTION Build_MenuBar() oSubMenu:setColorBG( GraMakeRGBColor( { 134,128,250 } ) ) oSubMenu:setColorFG( GraMakeRGBColor( { 255, 1, 1 } ) ) + #if 0 oSubMenu := XbpMenu():new( oMenuBar ):create() oSubMenu:title := "~Dialogs" oSubMenu:addItem( { "~One More Instance"+chr(K_TAB)+"Ctrl+M", {|| BuildADialog() } } ) oMenuBar:addItem( { oSubMenu, NIL } ) + #endif Return nil