View Issue Details

IDProjectCategoryView StatusLast Update
0004308JEDI VCL00 JVCL Componentspublic2007-12-16 05:00
ReporterGergelyAssigned ToAHUser 
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Product VersionDaily / GIT 
Target VersionFixed in Version3.34 
Summary0004308: OnCreate of TJvPlugIn fires twice
DescriptionPlease fix the following in JvPlugin.pas:

"
      // (rom) why this ?
      if Assigned(OnCreate) then
        OnCreate(Self);
"

should be

"
      if Assigned(OnCreate) and OldCreateOrder then
        OnCreate(Self);
"
TagsNo tags attached.

Activities

AHUser

2007-12-16 05:00

developer   ~0014052

Fixed in SVN.

Issue History

Date Modified Username Field Change
2007-12-07 06:24 Gergely New Issue
2007-12-16 05:00 AHUser Status new => resolved
2007-12-16 05:00 AHUser Fixed in Version => Daily / SVN
2007-12-16 05:00 AHUser Resolution open => fixed
2007-12-16 05:00 AHUser Assigned To => AHUser
2007-12-16 05:00 AHUser Note Added: 0014052