You've already forked lazarus-ccr
jvcllaz: Check packages and demos for Laz 1.8.4 / 2.0.0 / 2.0.2 / trunk and FPC 3.0.4 / FPC 3.2 / trunk. 32-bit, Laz 2.0.2/FPC 3.2 64 bit. Make fixes needed.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6971 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -2260,7 +2260,7 @@ end;
|
||||
|
||||
procedure TJvNavIconButton.ParentStyleManagerChanged(var Msg: TMsgStyleManagerChange);
|
||||
begin
|
||||
if (Msg.Sender <> Self) and ParentStyleManager then
|
||||
if (Msg.Sender <> Self) and ParentStyleManager and not (csDestroying in ComponentState) then
|
||||
begin
|
||||
StyleManager := Msg.StyleManager;
|
||||
ParentStyleManager := True;
|
||||
|
@ -67,7 +67,7 @@ type
|
||||
FImageIndex: TImageIndex;
|
||||
FEnabled: Boolean;
|
||||
FVisible: Boolean;
|
||||
FTag: Integer;
|
||||
FTag: PtrInt;
|
||||
FData: TObject;
|
||||
FHint: TCaption;
|
||||
FName: string;
|
||||
@ -121,7 +121,7 @@ type
|
||||
property Modified: Boolean read GetModified write SetModified default False;
|
||||
property Hint: TCaption read FHint write FHint;
|
||||
property ImageIndex: TImageIndex read FImageIndex write SetImageIndex default -1;
|
||||
property Tag: Integer read FTag write FTag default 0;
|
||||
property Tag: PtrInt read FTag write FTag default 0;
|
||||
property Visible: Boolean read FVisible write SetVisible default True;
|
||||
property PopupMenu: TPopupMenu read FPopupMenu write SetPopupMenu;
|
||||
property ShowHint: Boolean read FShowHint write FShowHint default True;
|
||||
|
Reference in New Issue
Block a user