ObjFW  Check-in [d2b906b7f1]

Overview
Comment:Fix a forgotten -[cString] in OFExceptions.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d2b906b7f11d8294e3186694aae8ce9ade09a37e4ee451c032a931985cc08a93
User & Date: js on 2009-06-09 21:01:31
Other Links: manifest | tags
Context
2009-06-09
23:28
Update the dtable so we can replace methods at runtime. check-in: c70922ee1c user: js tags: trunk
21:01
Fix a forgotten -[cString] in OFExceptions. check-in: d2b906b7f1 user: js tags: trunk
20:47
Rename -[append:] to -[appendString:]. check-in: 9863810eba user: js tags: trunk
Changes

Modified src/OFExceptions.m from [78e6bb7996] to [b2319a10bf].

280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
			    [class name]];

	return string;
}
@end

@implementation OFInitializationFailedException
- (OFString*)cString
{
	if (string != nil)
		return string;

	string = [[OFMutableString alloc]
	    initWithFormat: @"Initialization failed for class %s!",
			    [class name]];







|







280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
			    [class name]];

	return string;
}
@end

@implementation OFInitializationFailedException
- (OFString*)string
{
	if (string != nil)
		return string;

	string = [[OFMutableString alloc]
	    initWithFormat: @"Initialization failed for class %s!",
			    [class name]];