Differences From Artifact [1ae8403825]:
- File src/XMPPExceptions.m — part of check-in [85bda4afee] at 2012-03-21 10:56:56 on branch trunk — Update URL in copyright. (user: js, size: 6855) [annotate] [blame] [check-ins using]
To Artifact [9ce07a194d]:
- File
src/XMPPExceptions.m
— part of check-in
[6d15f9618b]
at
2012-06-01 22:16:56
on branch trunk
— Add missing header files
gcc complains about missing interfaces without this. (user: florob@babelmonkeys.de, size: 6882) [annotate] [blame] [check-ins using]
︙ | |||
21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | + | */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #import "XMPPExceptions.h" #import "XMPPConnection.h" @implementation XMPPException + exceptionWithClass: (Class)class_ connection: (XMPPConnection*)conn { return [[[self alloc] initWithClass: class_ connection: conn] autorelease]; |
︙ |