View Issue Details

IDProjectCategoryView StatusLast Update
0004506JEDI VCL00 JVCL Componentspublic2008-10-07 10:23
ReporterdejoyAssigned ToAHUser 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
PlatformOSwin xpOS Versionxp
Product Version3.35 
Target VersionFixed in Version3.36 
Summary0004506: procedure BoundsChanged of TJvEx???? missing message WM_MOVE
Descriptionprocedure BoundsChanged of TJvEx???? missing message WM_MOVE, thus move the control descendants TJvEx???, the procedure of BoundsChanged not triggered, just only resizing.

recommendation :

procedure TJvEx???.WndProc(var Msg: TMessage);
begin
.....
    case Msg.Msg of
    WM_SIZE,WM_MOVE: // add WM_MOVE
      begin
        inherited WndProc(Msg);
        BoundsChanged;
      end;
.....
end;
TagsNo tags attached.

Activities

AHUser

2008-10-07 10:22

developer   ~0014780

Fixed in SVN.

Issue History

Date Modified Username Field Change
2008-10-07 09:32 dejoy New Issue
2008-10-07 10:22 AHUser Status new => resolved
2008-10-07 10:22 AHUser Fixed in Version => Daily / SVN
2008-10-07 10:22 AHUser Resolution open => fixed
2008-10-07 10:22 AHUser Assigned To => AHUser
2008-10-07 10:22 AHUser Note Added: 0014780