Subversion Repositories currency_converter

Compare Revisions

Ignore whitespace Rev 15 → Rev 16

/trunk/RTL/VtsCurConv.pas
208,6 → 208,12
 
fromCur := Trim(UpperCase(fromCur));
toCur := Trim(UpperCase(toCur));
if fromCur = toCur then
begin
result := value;
exit;
end;
 
sJSON := GetJsonRaw(HistoricDate);