In Delphi 10.2.3, I've recently started seeing this weird icon; does anyone know what it means? I am talking about the red circle with a minus sign in it.
In Delphi 10.2.3, I've recently started seeing this weird icon; does anyone know what it means? I am talking about the red circle with a minus sign in it.
This icon is supposed to inform you that the current line calls the Halt system procedure.
You get similar icons with Continue, Break, and Exit:
In this case, you have a property with the unfortunate name Halt, so the editor confuses this with the Halt system procedure.
It is a bad idea to use this property name.