X-Git-Url: http://cgit.babelmonkeys.de/?p=jubjub.git;a=blobdiff_plain;f=src%2Fcore%2FJubChatClient.m;h=b4a1481fb4b76683e7aa039d106abadec4f83fb6;hp=4efa89464e2935ea8e3527526e1a99b97fd8b6fd;hb=205c3163ad207b7a95d8a80799c4e538851f0ce7;hpb=8571a0b0bc73062951d6ba55cc17e0ae2fc87cfc diff --git a/src/core/JubChatClient.m b/src/core/JubChatClient.m index 4efa894..b4a1481 100644 --- a/src/core/JubChatClient.m +++ b/src/core/JubChatClient.m @@ -3,6 +3,7 @@ @implementation JubChatClient @synthesize connection; @synthesize roster; +@synthesize contactManager; @synthesize presence; @synthesize ui; @@ -22,6 +23,10 @@ roster = [[XMPPRoster alloc] initWithConnection: connection]; [roster addDelegate: self]; + contactManager = [[XMPPContactManager alloc] + initWithConnection: connection + roster: roster]; + streamManagement = [[XMPPStreamManagement alloc] initWithConnection: connection]; @@ -37,6 +42,7 @@ - (void)dealloc { [roster release]; + [contactManager release]; [streamManagement release]; [connection release]; [presence release];