ObjFW  Check-in [e2b1c61c45]

Overview
Comment:Fix a typo introduced by the new ivar naming convention.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: e2b1c61c45e7104b2292cd5a89ecb784fcb4e3477c64422864b6a9b09b36896b
User & Date: js on 2010-05-06 22:26:06
Other Links: manifest | tags
Context
2010-05-08
14:57
Library version is included in .dylib and framework now. check-in: b7c8dbb21c user: js tags: trunk
2010-05-06
22:26
Fix a typo introduced by the new ivar naming convention. check-in: e2b1c61c45 user: js tags: trunk
15:23
Better Info.plist. check-in: a17d0e897d user: js tags: trunk
Changes

Modified src/OFExceptions.m from [1b38e5bb50] to [a94e12da30].

82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
					      selector: _cmd];
}

- initWithClass: (Class)class_
{
	self = [super init];

	class_ = class_;

	return self;
}

- (void)dealloc
{
	[string release];







|







82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
					      selector: _cmd];
}

- initWithClass: (Class)class_
{
	self = [super init];

	inClass = class_;

	return self;
}

- (void)dealloc
{
	[string release];
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
- (OFString*)string
{
	if (string != nil)
		return string;

	string = [[OFString alloc] initWithFormat:
	    @"A connection to service %s on node %s could not be established "
	    @"in class %s! " ERRFMT, [node cString], [service cString],
	    [inClass className], ERRPARAM];

	return string;
}

- (int)errNo
{







|







1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
- (OFString*)string
{
	if (string != nil)
		return string;

	string = [[OFString alloc] initWithFormat:
	    @"A connection to service %s on node %s could not be established "
	    @"in class %s! " ERRFMT, [service cString], [node cString],
	    [inClass className], ERRPARAM];

	return string;
}

- (int)errNo
{