Skip to content

Commit

Permalink
Fixed merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Clancey committed Feb 23, 2011
1 parent 2d299b4 commit f841c6e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions MonoMac.Windows.Forms/System.Windows.Forms/ComboBox.cocoa.cs
Expand Up @@ -16,10 +16,6 @@ namespace System.Windows.Forms
public partial class ComboBox : ListControl
{
internal ComboBoxHelper m_helper;
internal override NSView c_helper {
get { return m_helper; }
set { m_helper = value as ComboBoxHelper; }
}

internal override void DrawItemInternal (DrawItemEventArgs e)
{
Expand Down
2 changes: 1 addition & 1 deletion MonoMac.Windows.Forms/System.Windows.Forms/Label.cocoa.cs
Expand Up @@ -32,7 +32,7 @@ private void resize ()

protected override void CreateHandle ()
{
m_helper = new TextBoxMouseView();
m_helper = new TextBoxMouseView();
m_view = m_helper;
m_helper.Host = this;
m_helper.Editable = false;
Expand Down

0 comments on commit f841c6e

Please sign in to comment.