From c983884a04414fb06f1e28c1cf999239aeb42b20 Mon Sep 17 00:00:00 2001 From: Pritpal Bedi Date: Wed, 4 Aug 2010 08:51:54 +0000 Subject: [PATCH] 2010-08-04 01:47 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbide/ideshortcuts.prg ! Deleted calls to HB_TRACE(). oErr was not being referenced after HB_TR_ALWAYS => HB_TR_DEBUG. --- harbour/ChangeLog | 5 +++++ harbour/contrib/hbide/ideshortcuts.prg | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index aae7edd990..6f6c86f74c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,11 @@ The license applies to all entries newer than 2009-04-28. */ +2010-08-04 01:47 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) + * contrib/hbide/ideshortcuts.prg + ! Deleted calls to HB_TRACE(). oErr was not being referenced + after HB_TR_ALWAYS => HB_TR_DEBUG. + 2010-08-03 10:40 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * contrib/make.hbs + Generalized extern generation. diff --git a/harbour/contrib/hbide/ideshortcuts.prg b/harbour/contrib/hbide/ideshortcuts.prg index 5a485f7d4a..cf1e04cb47 100644 --- a/harbour/contrib/hbide/ideshortcuts.prg +++ b/harbour/contrib/hbide/ideshortcuts.prg @@ -749,7 +749,7 @@ METHOD IdeShortcuts:evalMacro( cString ) LOCAL oErr, bBlock, cBlock LOCAL lEvaluated := .f. - cBlock := ::buildBlock( cString ) ; HB_TRACE( HB_TR_DEBUG, cString, cBlock ) + cBlock := ::buildBlock( cString ) bBlock := &( cBlock ) @@ -757,7 +757,7 @@ METHOD IdeShortcuts:evalMacro( cString ) eval( bBlock, self ) lEvaluated := .t. RECOVER USING oErr - HB_TRACE( HB_TR_DEBUG, valtype( oErr ), oErr:description ) + hbide_justACall( oErr:description ) END SEQUENCE ErrorBlock( bError )