Re: [Lazarus] FpDebug with aarch64-linux

2021-12-06 Thread Martin Frb via lazarus
On 06/12/2021 17:17, Gabor Boros via lazarus wrote: Hi All, FPC 3.3.1, Lazarus fixes_2_2, LazDebuggerFp installed and configured in Tools/Options. If start the project got "Error starting process in debugger". With gdb works as expected. Is FpDebug not supported on aarch64? FpDebug only sup

[Lazarus] FpDebug with aarch64-linux

2021-12-06 Thread Gabor Boros via lazarus
Hi All, FPC 3.3.1, Lazarus fixes_2_2, LazDebuggerFp installed and configured in Tools/Options. If start the project got "Error starting process in debugger". With gdb works as expected. Is FpDebug not supported on aarch64? Gabor -- ___ lazarus mailin

Re: [Lazarus] Assigning Class to object

2021-12-06 Thread Kostas Michalopoulos via lazarus
On 12/6/21 02:15, R.Smith via lazarus wrote: Firstly the correct way of determinig class (as with your current solution) is like this:   if (MyObj is TButton) then TButton(MyObj).OnMouseDown := tmethod (not important here)  else   if (MyObj is TPanel)  then TPanel(MyObj).OnMouseDown := tmeth