From 3d8424928cb79aa8ee07c79a3b63297c50b72a9a Mon Sep 17 00:00:00 2001 From: Pritpal Bedi Date: Wed, 17 Jun 2009 07:12:25 +0000 Subject: [PATCH] 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. --- harbour/ChangeLog | 5 +++++ harbour/contrib/hbxbp/tests/demoxbp.prg | 2 ++ 2 files changed, 7 insertions(+) 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