summaryrefslogtreecommitdiff
path: root/MLKSymbol.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-14 16:31:50 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-14 16:31:50 +0200
commit3e30453f1714b03be1a6588e174a3f256e80cf5f (patch)
tree366849bb306e10f7a70eac65855cca2bb9b53626 /MLKSymbol.m
parent206e9d65a486e7f01e9fe32b2ef66bc4b0c22798 (diff)
Call [super init] from every initialiser of every class.
Diffstat (limited to 'MLKSymbol.m')
-rw-r--r--MLKSymbol.m1
1 files changed, 1 insertions, 0 deletions
diff --git a/MLKSymbol.m b/MLKSymbol.m
index 6ef0411..724cdfd 100644
--- a/MLKSymbol.m
+++ b/MLKSymbol.m
@@ -7,6 +7,7 @@
@implementation MLKSymbol
-(MLKSymbol *) initWithName:(id)aName package:(id)aPackage
{
+ self = [super init];
ASSIGN (name, aName);
ASSIGN (homePackage, aPackage);
return self;