ObjFW  Diff

Differences From Artifact [5bbbc65fa4]:

To Artifact [0aa9a039cb]:


272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
			_getter = [_name copy];

		if ((_attributes & OF_PROPERTY_READWRITE) && _setter == nil) {
			of_unichar_t first = [_name characterAtIndex: 0];
			OFMutableString *tmp = [_name mutableCopy];
			_setter = tmp;

			if (first < 0x80) {
				[tmp setCharacter: toupper((unsigned char)first)
					  atIndex: 0];
			}

			[tmp prependString: @"set"];

			[tmp makeImmutable];
		}
	} @catch (id e) {
		[self release];
		@throw e;







<
|
|
<
<







272
273
274
275
276
277
278

279
280


281
282
283
284
285
286
287
			_getter = [_name copy];

		if ((_attributes & OF_PROPERTY_READWRITE) && _setter == nil) {
			of_unichar_t first = [_name characterAtIndex: 0];
			OFMutableString *tmp = [_name mutableCopy];
			_setter = tmp;


			[tmp setCharacter: of_ascii_toupper(first)
				  atIndex: 0];


			[tmp prependString: @"set"];

			[tmp makeImmutable];
		}
	} @catch (id e) {
		[self release];
		@throw e;