Overview
Comment: | OFLocalization: Fix type mismatch |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
209ea679c05c9a67edd875a51291a84f |
User & Date: | js on 2017-11-13 22:26:51 |
Other Links: | manifest | tags |
Context
2017-11-13
| ||
22:59 | Add -[OFCharacterSet invertedSet] check-in: 5b80a003bd user: js tags: trunk | |
22:26 | OFLocalization: Fix type mismatch check-in: 209ea679c0 user: js tags: trunk | |
22:25 | OFURLHandler: Fix missing return check-in: f8ccaac96d user: js tags: trunk | |
Changes
Modified src/OFLocalization.m from [e4a754b9ab] to [857470cd08].
︙ | ︙ | |||
82 83 84 85 86 87 88 | } #endif @implementation OFLocalization @synthesize language = _language, territory = _territory, encoding = _encoding; @synthesize decimalPoint = _decimalPoint; | | | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | } #endif @implementation OFLocalization @synthesize language = _language, territory = _territory, encoding = _encoding; @synthesize decimalPoint = _decimalPoint; + (OFLocalization *)sharedLocalization { return sharedLocalization; } + (OFString *)language { return [sharedLocalization language]; |
︙ | ︙ |