s/internalText/InternalText/g

This commit is contained in:
Drew DeVault 2016-11-10 18:25:20 -05:00
parent a81f099d40
commit e2365cfad2
1 changed files with 3 additions and 3 deletions

View File

@ -23,12 +23,12 @@ public Bindable<string> Bindable
}
}
protected override string internalText
protected override string InternalText
{
get { return base.internalText; }
get { return base.InternalText; }
set
{
base.internalText = value;
base.InternalText = value;
if (bindable != null)
bindable.Value = value;
}