| Comment: | Add missing imports to make gcc from trunk happy. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | 0.5 |
| Files: | files | file ages | folders |
| SHA3-256: |
265ebf1d85ffe51efa1611f29dbb4947 |
| User & Date: | js on 2011-06-06 16:05:00 |
| Other Links: | branch diff | manifest | tags |
|
2011-06-06
| ||
| 16:07 | Correctly add -Wshorten-64-to-32. (check-in: 7eff95d3b4 user: js tags: 0.5) | |
| 16:05 | Add missing imports to make gcc from trunk happy. (check-in: 265ebf1d85 user: js tags: 0.5) | |
|
2011-06-04
| ||
| 18:49 | Fix a bug in -[OFDictionary initWithKeys:arguments:]. (check-in: 448a35dd9b user: js tags: 0.5) | |
Modified src/OFHTTPRequest.m from [c8b35b7eac] to [739e92f9e0].
| ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | + | #include <string.h> #import "OFHTTPRequest.h" #import "OFString.h" #import "OFURL.h" #import "OFTCPSocket.h" #import "OFDictionary.h" #import "OFDataArray.h" #import "OFAutoreleasePool.h" #import "OFHTTPRequestFailedException.h" #import "OFInvalidServerReplyException.h" #import "OFOutOfRangeException.h" #import "OFTruncatedDataException.h" #import "OFUnsupportedProtocolException.h" |
| ︙ |
Modified src/OFString.m from [dd37a07a33] to [f7f948e263].
| ︙ | |||
31 32 33 34 35 36 37 38 39 40 41 42 43 44 | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | + | #endif #import "OFString.h" #import "OFArray.h" #import "OFFile.h" #import "OFURL.h" #import "OFHTTPRequest.h" #import "OFDataArray.h" #import "OFAutoreleasePool.h" #import "OFHTTPRequestFailedException.h" #import "OFInitializationFailedException.h" #import "OFInvalidArgumentException.h" #import "OFInvalidEncodingException.h" #import "OFInvalidFormatException.h" |
| ︙ |
Modified src/OFXMLElement.h from [f4d50f39b5] to [2bd5b1c182].
| ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | + - | * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import "OFObject.h" #import "OFXMLAttribute.h" @class OFString; @class OFArray; @class OFMutableString; @class OFMutableArray; @class OFMutableDictionary; |
| ︙ |
Modified src/exceptions/OFAcceptFailedException.m from [7e7f947ee7] to [ea651db91b].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + | * file. */ #include "config.h" #import "OFAcceptFailedException.h" #import "OFString.h" #import "OFTCPSocket.h" #import "OFNotImplementedException.h" #import "common.h" @implementation OFAcceptFailedException + newWithClass: (Class)class_ |
| ︙ |
Modified src/exceptions/OFAddressTranslationFailedException.m from [169c6cd7e2] to [934b14dab9].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + | * file. */ #include "config.h" #import "OFAddressTranslationFailedException.h" #import "OFString.h" #import "OFTCPSocket.h" #import "common.h" @implementation OFAddressTranslationFailedException + newWithClass: (Class)class_ socket: (OFTCPSocket*)socket host: (OFString*)host |
| ︙ |
Modified src/exceptions/OFAlreadyConnectedException.m from [8f294af99b] to [48d0714422].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFAlreadyConnectedException.h"
#import "OFString.h"
#import "OFTCPSocket.h"
#import "OFNotImplementedException.h"
@implementation OFAlreadyConnectedException
+ newWithClass: (Class)class_
socket: (OFTCPSocket*)socket
{
|
| ︙ |
Modified src/exceptions/OFBindFailedException.m from [618c1f8bd7] to [6af98418a1].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + | * file. */ #include "config.h" #import "OFBindFailedException.h" #import "OFString.h" #import "OFTCPSocket.h" #import "OFNotImplementedException.h" #import "common.h" @implementation OFBindFailedException + newWithClass: (Class)class_ |
| ︙ |
Modified src/exceptions/OFConditionBroadcastFailedException.m from [e2f7203d01] to [e42b4e7288].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFConditionBroadcastFailedException.h"
#import "OFString.h"
#import "OFThread.h"
#import "OFNotImplementedException.h"
@implementation OFConditionBroadcastFailedException
+ newWithClass: (Class)class_
condition: (OFCondition*)condition
{
|
| ︙ |
Modified src/exceptions/OFConditionSignalFailedException.m from [18c8107daf] to [d5c9084025].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFConditionSignalFailedException.h"
#import "OFString.h"
#import "OFThread.h"
#import "OFNotImplementedException.h"
@implementation OFConditionSignalFailedException
+ newWithClass: (Class)class_
condition: (OFCondition*)condition
{
|
| ︙ |
Modified src/exceptions/OFConditionStillWaitingException.m from [72bd604d13] to [842bbabb44].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFConditionStillWaitingException.h"
#import "OFString.h"
#import "OFThread.h"
#import "OFNotImplementedException.h"
@implementation OFConditionStillWaitingException
+ newWithClass: (Class)class_
condition: (OFCondition*)condition
{
|
| ︙ |
Modified src/exceptions/OFConditionWaitFailedException.m from [395ad03884] to [8a702fc8e7].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFConditionWaitFailedException.h"
#import "OFString.h"
#import "OFThread.h"
#import "OFNotImplementedException.h"
@implementation OFConditionWaitFailedException
+ newWithClass: (Class)class_
condition: (OFCondition*)condition
{
|
| ︙ |
Modified src/exceptions/OFConnectionFailedException.m from [ad4dc4b722] to [4942ddb4be].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + | * file. */ #include "config.h" #import "OFConnectionFailedException.h" #import "OFString.h" #import "OFTCPSocket.h" #import "OFNotImplementedException.h" #import "common.h" @implementation OFConnectionFailedException + newWithClass: (Class)class_ |
| ︙ |
Modified src/exceptions/OFHashAlreadyCalculatedException.m from [2396ce4fe7] to [0923b30e46].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFHashAlreadyCalculatedException.h"
#import "OFString.h"
#import "OFHash.h"
#import "OFNotImplementedException.h"
@implementation OFHashAlreadyCalculatedException
+ newWithClass: (Class)class_
hash: (OFHash*)hash
{
|
| ︙ |
Modified src/exceptions/OFListenFailedException.m from [98f4572f60] to [050e526b82].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + | * file. */ #include "config.h" #import "OFListenFailedException.h" #import "OFString.h" #import "OFTCPSocket.h" #import "OFNotImplementedException.h" #import "common.h" @implementation OFListenFailedException + newWithClass: (Class)class_ |
| ︙ |
Modified src/exceptions/OFMalformedXMLException.m from [ca2ee2fed4] to [4aa8a7f2e3].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFMalformedXMLException.h"
#import "OFString.h"
#import "OFXMLParser.h"
#import "OFNotImplementedException.h"
@implementation OFMalformedXMLException
+ newWithClass: (Class)class_
parser: (OFXMLParser*)parser
{
|
| ︙ |
Modified src/exceptions/OFMutexLockFailedException.m from [b44ad10d78] to [6cdc6df2bc].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFMutexLockFailedException.h"
#import "OFString.h"
#import "OFThread.h"
#import "OFNotImplementedException.h"
@implementation OFMutexLockFailedException
+ newWithClass: (Class)class_
mutex: (OFMutex*)mutex
{
|
| ︙ |
Modified src/exceptions/OFMutexStillLockedException.m from [c55164b0a2] to [149190a6c2].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFMutexStillLockedException.h"
#import "OFString.h"
#import "OFThread.h"
#import "OFNotImplementedException.h"
@implementation OFMutexStillLockedException
+ newWithClass: (Class)class_
mutex: (OFMutex*)mutex
{
|
| ︙ |
Modified src/exceptions/OFMutexUnlockFailedException.m from [3c59ab0517] to [fb91526d89].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFMutexUnlockFailedException.h"
#import "OFString.h"
#import "OFThread.h"
#import "OFNotImplementedException.h"
@implementation OFMutexUnlockFailedException
+ newWithClass: (Class)class_
mutex: (OFMutex*)mutex
{
|
| ︙ |
Modified src/exceptions/OFNotConnectedException.m from [ba0d7f211d] to [2f7d4a9cb8].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFNotConnectedException.h"
#import "OFString.h"
#import "OFTCPSocket.h"
#import "OFNotImplementedException.h"
@implementation OFNotConnectedException
+ newWithClass: (Class)class_
socket: (OFStreamSocket*)socket
{
|
| ︙ |
Modified src/exceptions/OFSeekFailedException.m from [6ded05d92b] to [7b62503b45].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + | * file. */ #include "config.h" #import "OFSeekFailedException.h" #import "OFString.h" #import "OFSeekableStream.h" #import "OFNotImplementedException.h" #import "common.h" @implementation OFSeekFailedException + newWithClass: (Class)class_ |
| ︙ |
Modified src/exceptions/OFSetOptionFailedException.m from [dcdd902585] to [34a2e0a98f].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFSetOptionFailedException.h"
#import "OFString.h"
#import "OFStream.h"
#import "OFNotImplementedException.h"
@implementation OFSetOptionFailedException
+ newWithClass: (Class)class_
stream: (OFStream*)stream
{
|
| ︙ |
Modified src/exceptions/OFThreadJoinFailedException.m from [31a64b538f] to [cef37d7029].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFThreadJoinFailedException.h"
#import "OFString.h"
#import "OFThread.h"
#import "OFNotImplementedException.h"
@implementation OFThreadJoinFailedException
+ newWithClass: (Class)class_
thread: (OFThread*)thread
{
|
| ︙ |
Modified src/exceptions/OFThreadStartFailedException.m from [beb705e46b] to [187fa112b5].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFThreadStartFailedException.h"
#import "OFString.h"
#import "OFThread.h"
#import "OFNotImplementedException.h"
@implementation OFThreadStartFailedException
+ newWithClass: (Class)class_
thread: (OFThread*)thread
{
|
| ︙ |
Modified src/exceptions/OFThreadStillRunningException.m from [e27ddf16cb] to [b9155e70de].
| ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + |
* file.
*/
#include "config.h"
#import "OFThreadStillRunningException.h"
#import "OFString.h"
#import "OFThread.h"
#import "OFNotImplementedException.h"
@implementation OFThreadStillRunningException
+ newWithClass: (Class)class_
thread: (OFThread*)thread
{
|
| ︙ |