@@ -53,11 +53,11 @@ - initWithName: (OFString *)name namespace: (OFString *)namespace stringValue: (OFString *)stringValue { - self = [super OF_init]; + self = [super of_init]; @try { _name = [name copy]; _namespace = [namespace copy]; _stringValue = [stringValue copy]; @@ -69,11 +69,11 @@ return self; } - initWithSerialization: (OFXMLElement *)element { - self = [super OF_init]; + self = [super of_init]; @try { void *pool = objc_autoreleasePoolPush(); if (![[element name] isEqual: [self className]] ||