ObjFW  Check-in [100ba19a60]

Overview
Comment:Fix a missing rename.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 100ba19a60331d0e6482af434e283b01960ca39384967428eb8f61165d683d13
User & Date: js on 2011-09-15 11:18:24
Other Links: manifest | tags
Context
2011-09-15
11:18
Update buildsys. check-in: 76cc08b755 user: js tags: trunk
11:18
Fix a missing rename. check-in: 100ba19a60 user: js tags: trunk
11:01
Specify the encoding for HTTP POST request data. check-in: 7f93f420b5 user: js tags: trunk
Changes

Modified src/OFIntrospection.m from [e964a3550f] to [7933a51094].

54
55
56
57
58
59
60
61

62
63
64
65
66
67
68
- _initWithMethod: (Method_t)method
{
	self = [super init];

	@try {
		selector = method->method_name;
		name = [[OFString alloc]
		    initWithCString: sel_get_name(selector)];

		typeEncoding = method->method_types;
	} @catch (id e) {
		[self release];
		@throw e;
	}

	return self;







|
>







54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
- _initWithMethod: (Method_t)method
{
	self = [super init];

	@try {
		selector = method->method_name;
		name = [[OFString alloc]
		    initWithCString: sel_get_name(selector)
			   encoding: OF_STRING_ENCODING_ASCII];
		typeEncoding = method->method_types;
	} @catch (id e) {
		[self release];
		@throw e;
	}

	return self;