mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-25 00:52:10 +01:00
Fix for 64 bit compilation
git-svn-id: trunk@20381 -
This commit is contained in:
parent
756467e902
commit
c7ba14b266
@ -133,7 +133,7 @@ end;
|
||||
|
||||
procedure TEditorMouseOptionsChangeDialog.WriteToAction(MAct: TSynEditMouseAction);
|
||||
begin
|
||||
MAct.Command := Integer(ActionBox.items.Objects[ActionBox.ItemIndex]);
|
||||
MAct.Command := TSynEditorMouseCommand(PtrUInt(Pointer(ActionBox.items.Objects[ActionBox.ItemIndex])));
|
||||
MAct.Button := IndexToBtn[ButtonBox.ItemIndex];
|
||||
MAct.ClickCount := IndexToClick[ClickBox.ItemIndex];
|
||||
MAct.MoveCaret := CaretCheck.Checked;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user