Access Violation in acGlow.pas

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #69085
    HeDiBo
    Participant

    The function CircleClickMode(Ctrl: TControl; … may receive a nil Ctrl (becasue the control on which the mouse hovers has no owner).
    It should read as follows:

    function CircleClickMode(Ctrl: TControl; sd: TsCommonData; EventProperty: TacAnimatEvents): boolean;
    begin
      Result := ( Ctrl <> nil ) and         (*** DB ***)
                ( not (csDesigning in Ctrl.ComponentState) and Ctrl.Enabled and EventEnabled(aeClick, EventProperty) and
                ( sd.SkinManager <> nil) and (sd.SkinManager.AnimEffects.Buttons.ClickEffect <> ceWaveOut) );
    end;
    #69096
    Support
    Keymaster

    Thank you. This error is known already, will be fixed very soon.

    #69457
    HeDiBo
    Participant

    Solved. Please close this topic

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Access Violation in acGlow.pas’ is closed to new replies.