Why is this an issue?

Code that follows a consistent naming convention is self-documenting. In Delphi, all variable names should be in PascalCase. Global variables should have a consistent prefix.

The default prefix for global variables is G, but some projects may use another prefix to separate their global variables from those of other projects. This can make code spanning several projects more easily understandable.

How to fix it

Rename the variable name to follow the convention.

Resources