See changelog 2002-11-07 08:30 UTC-0300

This commit is contained in:
Luiz Rafael Culik
2002-11-07 10:27:36 +00:00
parent a8bbc6f474
commit 2869a4b8a1
2 changed files with 5 additions and 2 deletions

View File

@@ -7,6 +7,9 @@
For example:
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2002-11-07 08:30 UTC-0300 Luiz Rafael Culik <culikr@uol.com.br>
* source/rtl/alert.prg
! minor fix to my change from yesterday
2002-11-06 18:38 UTC-0300 Walter Negro <anegro@overnet.com.ar>
* source/rtl/achoice.prg

View File

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