Overview
Comment: | OFApplication: Fix typo |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
22d45f94d0342a0154805bd1864ec116 |
User & Date: | js on 2014-02-12 15:34:46 |
Other Links: | manifest | tags |
Context
2014-02-12
| ||
15:36 | Add support for SEH exceptions check-in: d7883de826 user: js tags: trunk | |
15:34 | OFApplication: Fix typo check-in: 22d45f94d0 user: js tags: trunk | |
03:17 | PLATFORMS.md: Add Windows 8.1 and MinGW-w64 check-in: 9496eea33b user: js tags: trunk | |
Changes
Modified src/OFApplication.m from [bad1c6eacd] to [666509d895].
︙ | ︙ | |||
168 169 170 171 172 173 174 | self = [super init]; @try { void *pool; OFMutableDictionary *environment; #if defined(__MACH__) && !defined(OF_IOS) char **env = *_NSGetEnviron(); | | | 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | self = [super init]; @try { void *pool; OFMutableDictionary *environment; #if defined(__MACH__) && !defined(OF_IOS) char **env = *_NSGetEnviron(); #elif defined(_WIN32) of_char16_t *env, *env0; #elif !defined(OF_IOS) char **env = environ; #else char *env; #endif |
︙ | ︙ |