Skip to content

Commit

Permalink
Fixes xamarin #3970, patch from Sebastien Pouliot
Browse files Browse the repository at this point in the history
  • Loading branch information
migueldeicaza committed Mar 20, 2012
1 parent b06dd0a commit 0de1be2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MonoTouch.Dialog/Elements.cs
Expand Up @@ -342,9 +342,9 @@ public class TextWithImageCellView : UITableViewCell {
const int ImageSpace = 32;
const int Padding = 8;

public TextWithImageCellView (BaseBooleanImageElement parent) : base (UITableViewCellStyle.Value1, parent.CellKey)
public TextWithImageCellView (BaseBooleanImageElement parent_) : base (UITableViewCellStyle.Value1, parent_.CellKey)
{
this.parent = parent;
parent = parent_;
label = new UILabel () {
TextAlignment = UITextAlignment.Left,
Text = parent.Caption,
Expand Down

0 comments on commit 0de1be2

Please sign in to comment.