call rtl function cloneset with fully qualified name

git-svn-id: trunk@38036 -
This commit is contained in:
michael 2018-01-25 13:58:39 +00:00
parent a834444cc0
commit 7d355ffffc

View File

@ -526,13 +526,13 @@ var rtl = {
},
includeSet: function(s,enumvalue){
if (s.$shared) s = cloneSet(s);
if (s.$shared) s = rtl.cloneSet(s);
s[enumvalue] = true;
return s;
},
excludeSet: function(s,enumvalue){
if (s.$shared) s = cloneSet(s);
if (s.$shared) s = rtl.cloneSet(s);
delete s[enumvalue];
return s;
},