fixes up protected field - changes to private

This commit is contained in:
Shannon
2013-11-19 10:40:21 +11:00
parent 5bb68f32bf
commit 44404b70e1

View File

@@ -13,7 +13,7 @@ namespace Umbraco.Web.PropertyEditors
{
public MultiNodeTreePickerPropertyEditor()
{
InternalPreValues = new Dictionary<string, object>
_internalPreValues = new Dictionary<string, object>
{
{"multiPicker", true}
};
@@ -24,11 +24,11 @@ namespace Umbraco.Web.PropertyEditors
return new MultiNodePickerPreValueEditor();
}
protected IDictionary<string, object> InternalPreValues;
private IDictionary<string, object> _internalPreValues;
public override IDictionary<string, object> DefaultPreValues
{
get { return InternalPreValues; }
set { InternalPreValues = value; }
get { return _internalPreValues; }
set { _internalPreValues = value; }
}
internal class MultiNodePickerPreValueEditor : PreValueEditor