https://bugzilla.novell.com/show_bug.cgi?id=640406
https://bugzilla.novell.com/show_bug.cgi?id=640406#c2 Johan Otto <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from Johan Otto <[email protected]> 2010-09-19 17:13:03 UTC --- in you code public void set_EditingAccessoryView(UIView value) { if (!value) { throw new ArgumentNullException(value); } .... set { ---------- As aposed to ------------ public void set_AccessoryView(UIView value) if (this.IsDirectBinding) { Messaging.void_objc_msgSend_IntPtr(this.Handle, UITableViewCell.selSetAccessoryView, (value ? value.Handle : IntPtr.Zero)); } else { Messaging.void_objc_msgSendSuper_IntPtr(this.SuperHandle, UITableViewCell.selSetAccessoryView, (value ? value.Handle : IntPtr.Zero)); } this.__mt_AccessoryView_var = value; } -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
