From 2c9e42bcb3fa2e0a89382525267fb8f61e749e06 Mon Sep 17 00:00:00 2001 From: hns Date: Wed, 23 Oct 2002 12:00:46 +0000 Subject: [PATCH] Fixed stupid bug in SkinFile constructor. --- src/helma/framework/core/SkinFile.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/helma/framework/core/SkinFile.java b/src/helma/framework/core/SkinFile.java index 0fcd1362..6951739a 100644 --- a/src/helma/framework/core/SkinFile.java +++ b/src/helma/framework/core/SkinFile.java @@ -26,7 +26,7 @@ public final class SkinFile implements Updatable { this.prototype = proto; this.file = file; this.name = name; - app = proto.app; + this.app = proto.app; skin = null; } @@ -37,9 +37,9 @@ public final class SkinFile implements Updatable { */ public SkinFile (String body, String name, Prototype proto) { this.prototype = proto; - app = proto.app; - name = name; - file = null; + this.app = proto.app; + this.name = name; + this.file = null; skin = new Skin (body, app); } @@ -51,7 +51,7 @@ public final class SkinFile implements Updatable { this.app = app; this.file = file; this.name = name; - prototype = null; + this.prototype = null; skin = null; }