diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3678577412..5a8571e9cf 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-05-04 06:58 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) + * contrib/hbqt/hbqt_errorsys.prg + - Removed: Error trace copied to clipboard, it was unforeseen implementation. + 2010-05-04 14:10 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/src/vm/thread.c ! fixed problem with OS2 GCC builds reported by David. diff --git a/harbour/contrib/hbqt/hbqt_errorsys.prg b/harbour/contrib/hbqt/hbqt_errorsys.prg index 600ef1f231..9c2e2e2a0c 100644 --- a/harbour/contrib/hbqt/hbqt_errorsys.prg +++ b/harbour/contrib/hbqt/hbqt_errorsys.prg @@ -65,7 +65,6 @@ STATIC FUNCTION DefError( oError ) LOCAL aOptions LOCAL nChoice LOCAL n - LOCAL cClip LOCAL aMsg := {} // By default, division by zero results in zero @@ -159,10 +158,6 @@ STATIC FUNCTION DefError( oError ) ENDDO - cClip := "" - aeval( aMsg, {|e| cClip += e + chr( 13 ) + chr( 10 ) } ) - QClipboard():new():setText( cClip ) - hbqt_showError( aMsg ) ErrorLevel( 1 )