I have about 95 warnings on unused variables. From the Variables pane, I see they are all context variables.
The thing is I did not explicitly define any context variables (e.g. UpdateContext(...)). All the definitions of the 95 variables point to the OnSelect code of an icon in the gallery. The code simply does a navigate, set a global variable and does an EditForm:
Navigate(
CIProjectCharterMain,
ScreenTransition.Fade,
OLGallery.Selected);
Set(varSource,"Proposal");
EditForm(ProjectCharterForm)
What can I do to fix this?