Properly wrap skin return value in createSkin().

This commit is contained in:
hns 2004-06-06 20:14:37 +00:00
parent 1e63855c80
commit 75f6e3515b

View file

@ -186,7 +186,7 @@ public class GlobalObject extends ImporterTopLevel {
* @return a parsed skin object
*/
public Object createSkin(String str) {
return new Skin(str, app);
return Context.toObject(new Skin(str, app), this);
}
/**