View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0001856 | JEDI VCL | 00 JVCL Components | public | 2004-06-13 14:32 | 2004-06-14 00:51 |
Reporter | cpall | Assigned To | user72 | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | |||||
Target Version | Fixed in Version | ||||
Summary | 0001856: Exception on Saving to string in simpleXML component (patch included) | ||||
Description | Missing 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; | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2004-06-13 14:32 | cpall | New Issue | |
2004-06-14 00:51 |
|
Status | new => resolved |
2004-06-14 00:51 |
|
Resolution | open => fixed |
2004-06-14 00:51 |
|
Assigned To | => user72 |
2004-06-14 00:51 |
|
Note Added: 0004549 |