View Issue Details

IDProjectCategoryView StatusLast Update
0004659JEDI VCL00 JVCL Componentspublic2009-01-14 03:04
ReportergwiethausAssigned Toobones 
PrioritynormalSeveritycrashReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.35 
Target VersionFixed in Version 
Summary0004659: Error Code in jvcmpD10R.bpl Package
DescriptionDear JVCL Team,


I do not write well in English. I try to write.
There is a Bug in the JCL to Compile Delpgi 2006.

Next line problem:
package: jvcmpD10R.bpl
file: jvtranslator.pas
Error: No enough parameter
Additional InformationCode:

  procedure InnerComponentToXML(AComponent: TObject; Elem: TJvSimpleXMLElem; Recurse: Boolean);

bla bla bla bla....

    //G. WIETHAUS - Error Line
    //no enought actual parameter
    //StringStream := TStringStream.Create;
    StringStream := TStringStream.Create(''); //<== Code modified
    try
      JclStream := TJclStringStream.Create(StringStream);
      try
        FXML.Root.SaveToStringStream(JclStream);
        Result := StringStream.DataString;
      finally
        JclStream.Free;
      end;
    finally
      StringStream.Free;
    end;
  end;
end;
TagsNo tags attached.

Activities

2009-01-13 04:02

 

JvTranslator.pas (34,855 bytes)

obones

2009-01-14 03:00

administrator   ~0015245

This is already fixed in the latest SVN content.
JVCL 3.35 is for D2009 only and compatibility with previous releases is not guaranteed. The next version will address this issue, in the meantime you can use the daily snapshots

Issue History

Date Modified Username Field Change
2009-01-13 04:02 gwiethaus New Issue
2009-01-13 04:02 gwiethaus File Added: JvTranslator.pas
2009-01-14 03:00 obones Note Added: 0015245
2009-01-14 03:00 obones Status new => assigned
2009-01-14 03:04 obones Status assigned => resolved
2009-01-14 03:04 obones Resolution open => fixed
2009-01-14 03:04 obones Assigned To => obones