1
0
mirror of synced 2024-09-19 09:46:09 +00:00

Fixed: conversion errors now report the named specifier causing the error

This commit is contained in:
Mark van Renswoude 2008-03-21 15:07:40 +00:00
parent 4cab1f15b4
commit 8c2549eda0

View File

@ -106,6 +106,7 @@ var
paramNames: TStringList;
paramValues: array of TVarRec;
specifierIndex: Integer;
errorMsg: String;
begin
if Length(AParams) mod 2 = 1 then
@ -192,11 +193,27 @@ begin
Inc(paramIndex);
end;
try
Result := Format(formatString, paramValues);
except
on E:EConvertError do
begin
errorMsg := E.Message;
{ Translate specifiers in error messages back to names }
for paramIndex := 0 to Pred(paramNames.Count) do
errorMsg := StringReplace(errorMsg, SpecifierChar + IntToStr(paramIndex) + ':',
SpecifierChar + SpecifierNameStart +
paramNames[paramIndex] + SpecifierNameEnd + ':',
[rfReplaceAll]);
raise EConvertError.Create(errorMsg);
end;
end;
finally
FreeAndNil(paramNames);
end;
Result := Format(formatString, paramValues);
end;