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.
This commit is contained in:
Pritpal Bedi
2010-08-04 08:51:54 +00:00
parent 8572f57500
commit c983884a04
2 changed files with 7 additions and 2 deletions

View File

@@ -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.

View File

@@ -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 )