From e4e6e243500992be38b06919096019070cd57080 Mon Sep 17 00:00:00 2001 From: Pritpal Bedi Date: Wed, 29 Aug 2012 15:56:12 +0000 Subject: [PATCH] 2012-08-29 08:54 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbide/functions.prg ! Fixed: logical error like: hb_default( lGUI, .T. ) => DEFAULT lGUI TO .T. It should not happen, but... --- harbour/ChangeLog | 6 ++++++ harbour/contrib/hbide/functions.prg | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7175d92b37..ee73af3cab 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,12 @@ The license applies to all entries newer than 2009-04-28. */ +2012-08-29 08:54 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) + * contrib/hbide/functions.prg + ! Fixed: logical error like: + hb_default( lGUI, .T. ) => DEFAULT lGUI TO .T. + It should not happen, but... + 2012-08-28 17:50 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) + contrib/hbide/resources/dictionary.png + contrib/hbide/resources/launch_r.png diff --git a/harbour/contrib/hbide/functions.prg b/harbour/contrib/hbide/functions.prg index c5b90798b8..90d53edb15 100644 --- a/harbour/contrib/hbide/functions.prg +++ b/harbour/contrib/hbide/functions.prg @@ -523,7 +523,7 @@ METHOD IdeFunctions:tagProject( cProjectTitle, lGUI ) LOCAL cProjFile, cRoot, aCTags, aSources, cSrc, a_, n LOCAL qApp := QApplication() - hb_default( lGUI, .T. ) + DEFAULT lGUI TO .T. IF !( ::inAction ) IF lGUI