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.
This commit is contained in:
Pritpal Bedi
2010-05-04 14:01:53 +00:00
parent 0ae64fb856
commit 7bad444425
2 changed files with 4 additions and 5 deletions

View File

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

View File

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