* Forgot raise statement in strtodate (thanks to Denis Golovan)

git-svn-id: trunk@13928 -
This commit is contained in:
michael 2009-10-23 10:24:24 +00:00
parent 9bdebeb50c
commit ed950da9cc

View File

@ -473,7 +473,7 @@ Var
begin
Result:=IntStrToDate(Msg,S,Len,useFormat,Separator);
If (Msg<>'') then
EConvertError.Create(Msg);
Raise EConvertError.Create(Msg);
end;
function StrToDate(const S: ShortString; const useformat : string; separator : char = #0): TDateTime;