https://bugzilla.novell.com/show_bug.cgi?id=640406

https://bugzilla.novell.com/show_bug.cgi?id=640406#c1


--- Comment #1 from Johan Otto <[email protected]> 2010-09-19 17:12:21 
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

Reply via email to