ObjFW  Check-in [0f50cc3858]

Overview
Comment:OFConstantString: Fix missed method
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 0f50cc38586106d608334d0ac1535bb7511ba83c6e4b66f2d2a6bc8dc6a6f325
User & Date: js on 2022-08-07 20:22:08
Other Links: manifest | tags
Context
2022-08-07
20:43
Remove utils/objfw-new check-in: 18e40d7a45 user: js tags: trunk
20:22
OFConstantString: Fix missed method check-in: 0f50cc3858 user: js tags: trunk
19:56
configure: Enable threads for Nintendo Switch check-in: bef92f92b6 user: js tags: trunk
Changes

Modified src/OFConstantString.m from [069ffd9312] to [d768085319].

345
346
347
348
349
350
351






352
353
354
355
356
357
358
}

- (OFString *)stringByAppendingPathComponent: (OFString *)component
{
	[self finishInitialization];
	return [self stringByAppendingPathComponent: component];
}







- (OFString *)stringByPrependingString: (OFString *)string
{
	[self finishInitialization];
	return [self stringByPrependingString: string];
}








>
>
>
>
>
>







345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
}

- (OFString *)stringByAppendingPathComponent: (OFString *)component
{
	[self finishInitialization];
	return [self stringByAppendingPathComponent: component];
}

- (OFString *)stringByAppendingPathExtension: (OFString *)extension
{
	[self finishInitialization];
	return [self stringByAppendingPathExtension: extension];
}

- (OFString *)stringByPrependingString: (OFString *)string
{
	[self finishInitialization];
	return [self stringByPrependingString: string];
}