Fixes merge issues with left over IPublishedContentProperty

This commit is contained in:
Shannon
2014-05-05 13:21:18 +10:00
parent 3df2d03fc8
commit 36c7fd53cb
2 changed files with 4 additions and 4 deletions

View File

@@ -4,14 +4,14 @@ using System.Web;
namespace Umbraco.Core.Dynamics
{
internal class PropertyResult : IPublishedContentProperty, IHtmlString
internal class PropertyResult : IPublishedProperty, IHtmlString
{
private readonly IPublishedContentProperty _source;
private readonly IPublishedProperty _source;
private readonly string _alias;
private readonly object _value;
private readonly PropertyResultType _type;
internal PropertyResult(IPublishedContentProperty source, PropertyResultType type)
internal PropertyResult(IPublishedProperty source, PropertyResultType type)
{
if (source == null) throw new ArgumentNullException("source");

View File

@@ -342,7 +342,7 @@
<Compile Include="Models\EntityExtensions.cs" />
<Compile Include="Models\Folder.cs" />
<Compile Include="Models\IMemberGroup.cs" />
<Compile Include="Models\IPublishedContentProperty.cs" />
<Compile Include="Models\IPublishedProperty.cs" />
<Compile Include="Models\IRelation.cs" />
<Compile Include="Models\IRelationType.cs" />
<Compile Include="Models\Membership\MembershipScenario.cs" />