@@ -29,11 +29,11 @@ return [[[self alloc] initWithString: string] autorelease]; } - initWithString: (OFString *)string { - self = [super OF_init]; + self = [super of_init]; @try { _CDATA = [string copy]; } @catch (id e) { [self release]; @@ -43,11 +43,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]] ||