ObjFW  Check-in [c15164ca65]

Overview
Comment:Fix typo to fix Win32
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: c15164ca652e03d42ff5f6186d79c35345e897b9548d2380a10192721611a287
User & Date: js on 2019-06-18 00:06:58
Other Links: manifest | tags
Context
2019-06-18
01:42
bridge: Fix missing deallocs check-in: d2886a005f user: js tags: trunk
00:06
Fix typo to fix Win32 check-in: c15164ca65 user: js tags: trunk
2019-06-17
02:33
Remove underscores from class names check-in: 17d57e01ff user: js tags: trunk
Changes

Modified src/OFConstantString.m from [7863900fc6] to [3ec6ddd0a7].

221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
- (void)dealloc
{
	OF_DEALLOC_UNSUPPORTED
}

/*
 * In all following methods, the constant string is converted to an
 * OFUTF8String and the message sent again.
 */

/* From protocol OFCopying */
- (id)copy
{
	[self finishInitialization];








|







221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
- (void)dealloc
{
	OF_DEALLOC_UNSUPPORTED
}

/*
 * In all following methods, the constant string is converted to an
 * OFConstantUTF8String and the message sent again.
 */

/* From protocol OFCopying */
- (id)copy
{
	[self finishInitialization];

Modified src/OFString.m from [3f6a4254de] to [7a1d39122e].

39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# import "OFFile.h"
# import "OFFileManager.h"
#endif
#import "OFLocale.h"
#import "OFStream.h"
#import "OFURL.h"
#import "OFURLHandler.h"
#import "OFUTF8String+Private.h"
#import "OFUTF8String.h"
#import "OFXMLElement.h"

#import "OFInitializationFailedException.h"
#import "OFInvalidArgumentException.h"
#import "OFInvalidEncodingException.h"
#import "OFInvalidFormatException.h"
#import "OFNotImplementedException.h"







|
|







39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# import "OFFile.h"
# import "OFFileManager.h"
#endif
#import "OFLocale.h"
#import "OFStream.h"
#import "OFURL.h"
#import "OFURLHandler.h"
#import "OFUTF8String.h"
#import "OFUTF8String+Private.h"
#import "OFXMLElement.h"

#import "OFInitializationFailedException.h"
#import "OFInvalidArgumentException.h"
#import "OFInvalidEncodingException.h"
#import "OFInvalidFormatException.h"
#import "OFNotImplementedException.h"

Modified src/OFWin32ConsoleStdIOStream.m from [2b42023382] to [f5375f7f58].

65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
	int fd;

	if (self != [OFWin32ConsoleStdIOStream class])
		return;

	if ((fd = _fileno(stdin)) >= 0)
		of_stdin = [[OFWin32ConsoleStdIOStream_ alloc]
		    of_initWithFileDescriptor: fd];
	if ((fd = _fileno(stdout)) >= 0)
		of_stdout = [[OFWin32ConsoleStdIOStream alloc]
		    of_initWithFileDescriptor: fd];
	if ((fd = _fileno(stderr)) >= 0)
		of_stderr = [[OFWin32ConsoleStdIOStream alloc]
		    of_initWithFileDescriptor: fd];







|







65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
	int fd;

	if (self != [OFWin32ConsoleStdIOStream class])
		return;

	if ((fd = _fileno(stdin)) >= 0)
		of_stdin = [[OFWin32ConsoleStdIOStream alloc]
		    of_initWithFileDescriptor: fd];
	if ((fd = _fileno(stdout)) >= 0)
		of_stdout = [[OFWin32ConsoleStdIOStream alloc]
		    of_initWithFileDescriptor: fd];
	if ((fd = _fileno(stderr)) >= 0)
		of_stderr = [[OFWin32ConsoleStdIOStream alloc]
		    of_initWithFileDescriptor: fd];