adium/adium

Parents a9f4102abb03
Children 65f47ea0dc82
http://hg.adium.im/adium/rev/82370a8e83bc was wrong, this should not have been weak, it generates a runtime error.

I'm not sure if this is safe, but it's the only thing I can get to work.
--- a/Source/AIPreferenceCVPrototypeView.h Thu Mar 07 13:20:35 2013 +0100
+++ b/Source/AIPreferenceCVPrototypeView.h Thu Mar 07 14:07:43 2013 +0100
@@ -14,10 +14,8 @@
* write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-@interface AIPreferenceCVPrototypeView : NSView {
- __weak NSCollectionViewItem *item;
-}
+@interface AIPreferenceCVPrototypeView : NSView
-@property (weak) NSCollectionViewItem *item;
+@property (assign, nonatomic) NSCollectionViewItem *item;
@end