Hello,
When using global system variables like pcCellView or cdfgData or cdfgForm, then LINT is very angry saying that those are global variables and this is not ok.
The only solution I have found to avoid these warnings is somethig like:
let( (tmp pcId)
tmp = 'pcCellView
pcId = symeval(tmp)
.....
;; use pcId in place of pcCellView
.....
)
But this is not a very official and ncie solution.
Is there any method to inform LINT that I those variables are OK !?
Thank you,
Best Regards,
Adrian