View Issue Details

IDProjectCategoryView StatusLast Update
0002894JEDI VCL00 JVCL Componentspublic2005-04-22 08:06
ReporterrobycarAssigned Toobones 
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.00 
Target VersionFixed in Version3.10 
Summary0002894: GetLineFontEvent never used in TJvgExportExcel.Execute
DescriptionInside procedure JvgExportComponents.TjvgExportExcel.Execute.InsertStrings you need to replace the event variable FOnGetHeaderLineFont with the procedure parameter GetLineForEvent.

Original Code:
  procedure InsertStrings(Strings: TStrings; Font: TFont; GetLineFontEvent:
    TJvGetLineFontEvent);
         ...
      if Assigned(FOnGetHeaderLineFont) then
        FOnGetHeaderLineFont(Self, I, Strings[I], CellFont);
         ...

Replace With:
      if Assigned(GetLineFontEvent) then
        GetLineFontEvent(Self, I, Strings[I], CellFont);
Additional InformationFilename: JvgExportComponents
Class: TJvgExportExcel
Method: Execute
SubProcedure: InsertStrings
Line: 0000084:0000379
TagsNo tags attached.

Activities

robycar

2005-04-21 14:33

reporter   ~0007034

Filename: JvgExportComponents
Class: TJvgExportExcel
Method: Execute
SubProcedure: InsertStrings
Line: 379

Sorry for tilde:(

obones

2005-04-22 08:06

administrator   ~0007049

Thanks, this is now solved in CVS, under revision 1.40

Issue History

Date Modified Username Field Change
2005-04-21 14:26 robycar New Issue
2005-04-21 14:33 robycar Note Added: 0007034
2005-04-22 08:06 obones Status new => resolved
2005-04-22 08:06 obones Resolution open => fixed
2005-04-22 08:06 obones Assigned To => obones
2005-04-22 08:06 obones Note Added: 0007049