From 229b7249986fa1d197825048744cf837119e3177 Mon Sep 17 00:00:00 2001 From: Antonio Linares Date: Wed, 5 Sep 2001 06:54:49 +0000 Subject: [PATCH] HB_DToS() replaced by DToS() --- harbour/source/rtl/persist.prg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harbour/source/rtl/persist.prg b/harbour/source/rtl/persist.prg index 52edde17fc..66b90dd006 100644 --- a/harbour/source/rtl/persist.prg +++ b/harbour/source/rtl/persist.prg @@ -179,7 +179,7 @@ static function ValToText( uValue ) cText = AllTrim( Str( uValue ) ) case cType == "D" - cText = 'HB_STOD( "' + HB_DTOS( uValue ) + '" )' + cText = 'HB_STOD( "' + DToS( uValue ) + '" )' otherwise cText = HB_ValToStr( uValue )