View Issue Details

IDProjectCategoryView StatusLast Update
0003981JEDI VCL00 JVCL Componentspublic2006-11-06 02:12
ReporterEinWillAssigned Toobones 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.20 
Target VersionFixed in Version3.30 
Summary0003981: TJvCustomComboBox and all its descendants never handle OnCloseUp event if compiled on Delphi6+
DescriptionProblem: TJvCustomComboBox and all its descendants never handle OnCloseUp event
         if compiled on Delphi6+.

Reason: procedure TJvCustomComboBox.CNCommand do not call inherited method.

Solution: lines 1272-1277 at jvComboBox.pas stays:
-------------------------------------------------------------
      CBN_CLOSEUP:
        begin
          {$IFDEF COMPILER5}
          CloseUp;
          {$ENDIF COMPILER5}
        end;
-------------------------------------------------------------
While should be:
-------------------------------------------------------------
      CBN_CLOSEUP:
        begin
          {$IFDEF COMPILER5}
          CloseUp;
          {$ELSE}
          inherited;
          {$ENDIF COMPILER5}
        end;
-------------------------------------------------------------
Additional InformationAlso, shouldn't OnCloseup event be published with every descendant of TJvCustomComboBox? Namely: with TJvFontComboBox, TJvColorComboBox and
TJvDriveCombo.
TagsNo tags attached.

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2006-11-05 22:48 EinWill New Issue
2006-11-06 02:12 obones Status new => resolved
2006-11-06 02:12 obones Fixed in Version => Daily / SVN
2006-11-06 02:12 obones Resolution open => fixed
2006-11-06 02:12 obones Assigned To => obones