MSIR.0798 Explicit (globses) name required for shared variables: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
(Automatically generated page update)
Line 8: Line 8:
end class</p>
end class</p>


[[Category:Sirius Mods messages]]
[[Category:Sirius Mods messages]] [[Category:MSIR.0600 - MSIR.0799]]

Revision as of 16:05, 13 August 2015

A shared class variable was declared as Global or Session but no global or session name was specified. While non-class global or session variables use the variable name (without the leading percent) as their global or session name if one is not specified, shared variables do not.

Specify an explicit global name, as in the following example:

class silly public shared variable absurd is object stringList shared('SILLY:ABSURD') end public shared end class