diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e1d322a7e6..048d6784a9 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -7,6 +7,9 @@ For example: 2002-12-01 23:12 UTC+0100 Foo Bar */ +2002-11-07 08:30 UTC-0300 Luiz Rafael Culik + * source/rtl/alert.prg + ! minor fix to my change from yesterday 2002-11-06 18:38 UTC-0300 Walter Negro * source/rtl/achoice.prg diff --git a/harbour/source/rtl/alert.prg b/harbour/source/rtl/alert.prg index 9da85d358f..f3a448e87f 100644 --- a/harbour/source/rtl/alert.prg +++ b/harbour/source/rtl/alert.prg @@ -121,7 +121,7 @@ FUNCTION Alert( xMessage, aOptions, cColorNorm, nDelay ) CASE ValType( xMessage ) == "B" ; xMessage := "{||...}" OTHERWISE ; xMessage := "NIL" ENDCASE - + if Len(cOld) >60 WHILE LEN(cOld) > 0 IF AT( ';' , cOld ) > 0 //Dont do this if ; exist @@ -148,7 +148,7 @@ FUNCTION Alert( xMessage, aOptions, cColorNorm, nDelay ) ENDDO - + endif DO WHILE ( nPos := At( ';', xMessage ) ) != 0 AAdd( aSay, Left( xMessage, nPos - 1 ) )