Duplicate setting

This warning is generated when a formula setting occurs more than once. In this case, only the last setting is actually used and the earlier settings are ignored. You can safely remove the earlier settings to fix the warning.

Example of code that triggers this warning:

default:
  caption = "This caption is ignored"
  caption = "This is the real caption"

Example of fixed code:

default:
  caption = "This is the real caption"

See Also
Parameters
Warnings