View Issue Details

IDProjectCategoryView StatusLast Update
0001856JEDI VCL00 JVCL Componentspublic2004-06-14 00:51
ReportercpallAssigned Touser72 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version 
Summary0001856: Exception on Saving to string in simpleXML component (patch included)
DescriptionMissing an argument to format. Roughly line 2009 in jvSimpleXML.pas source code.

function TJvSimpleXMLProp.SaveToString: string;
.
.
.
      AEncoder.DoEncodeValue(FValue);
    Result := Format(' %s:%s="%s"', [Pointer, FValue]);
  end
  else
.
.
.
end;

-----
should be?
function TJvSimpleXMLProp.SaveToString: string;
.
.
.
      AEncoder.DoEncodeValue(FValue);
    Result := Format(' %s:%s="%s"', [Pointer, Name, FValue]);
  end
  else
.
.
.
end;
TagsNo tags attached.

Activities

user72

2004-06-14 00:51

  ~0004549

Indeed. Fixed in CVS

Issue History

Date Modified Username Field Change
2004-06-13 14:32 cpall New Issue
2004-06-14 00:51 user72 Status new => resolved
2004-06-14 00:51 user72 Resolution open => fixed
2004-06-14 00:51 user72 Assigned To => user72
2004-06-14 00:51 user72 Note Added: 0004549