Horacio Jamilis wrote:
I saw that the debugger is starting to work! That´s grait.
There are a couple of things that must be improved... and I will try to work on it. I´m using Lazarus under Windows. The question is: is gdb able to evaluate object properties ?
No. only object fields, i.e. variables.

I mean, if I enter on the evaluator something like form1.caption it says it cant parse or something like that.

For field properties that have actual fields, use the private field.
property Bla :integer read FBla;
use MyBla.FBla

Where should I look for to fix this?
For properties that have read specifiers methods, find a way to execute the getter in the debuggee and get the result in Lazarus.
example: property Bla: integer read GetBla;

Vincent

_________________________________________________________________
    To unsubscribe: mail [EMAIL PROTECTED] with
               "unsubscribe" as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to