Browse Source

* parameter "Separator" of function TryStrToDate was not passed to IntStrToDate

git-svn-id: trunk@13959 -
ivost 16 years ago
parent
commit
bab5c5d8a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/objpas/sysutils/dati.inc

+ 1 - 1
rtl/objpas/sysutils/dati.inc

@@ -978,7 +978,7 @@ begin
   Result:=Length(S)<>0;
   If Result then
     begin
-    Value:=IntStrToDate(Msg,@S[1],Length(S),useformat);
+    Value:=IntStrToDate(Msg,@S[1],Length(S),useformat,Separator);
     Result:=(Msg='');
     end;
 end;