ObjIRC  Check-in [0d1dcda269]

Overview
Comment:Add -[description] to IRCChannel.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 0d1dcda269e105dee65f299ca248243ea96946c5ce0a8897e84d3dfb42b8c266
User & Date: js on 2011-09-09 16:18:01
Other Links: manifest | tags
Context
2011-09-09
16:23
Add support for handling PART and fix parsing of JOIN. check-in: 92093d341f user: js tags: trunk
16:18
Add -[description] to IRCChannel. check-in: 0d1dcda269 user: js tags: trunk
14:55
Adjust to recent ObjFW changes. check-in: b2ebf6b9e5 user: js tags: trunk
Changes

Modified src/IRCChannel.m from [e0dbfa2d7a] to [902ac1c988].

46
47
48
49
50
51
52





53

- (void)dealloc
{
	[name release];

	[super dealloc];
}





@end







>
>
>
>
>

46
47
48
49
50
51
52
53
54
55
56
57
58

- (void)dealloc
{
	[name release];

	[super dealloc];
}

- (OFString*)description
{
	return name;
}
@end