From 902ab046c096554b7e6fd7184760df185d5a267d Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Mon, 28 Mar 2011 15:56:57 +0200 Subject: [PATCH] gcc 4.6 does not seem to create implicit ivars. --- src/XMPPRosterItem.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/XMPPRosterItem.h b/src/XMPPRosterItem.h index 99e50dc..ffc3e66 100644 --- a/src/XMPPRosterItem.h +++ b/src/XMPPRosterItem.h @@ -25,6 +25,13 @@ @class XMPPJID; @interface XMPPRosterItem: OFObject +{ + XMPPJID *JID; + OFString *name; + OFString *subscription; + OFArray *groups; +} + @property (copy) XMPPJID *JID; @property (copy) OFString *name; @property (copy) OFString *subscription;