- Fixing type in namespace name.

--HG--
branch : dev
This commit is contained in:
Suha Can
2010-03-01 14:31:34 -08:00
parent 3a207d403a
commit 854df4ea45
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ using Orchard.Comments.Models;
using Orchard.ContentManagement;
using Orchard.ContentManagement.Drivers;
namespace Orchard.Comments.Controlers {
namespace Orchard.Comments.Controllers {
[UsedImplicitly]
public class CommentDriver : ContentItemDriver<Comment> {
public readonly static ContentType ContentType = new ContentType {

View File

@@ -1,5 +1,5 @@
using JetBrains.Annotations;
using Orchard.Comments.Controlers;
using Orchard.Comments.Controllers;
using Orchard.ContentManagement.Handlers;
using Orchard.Core.Common.Models;
using Orchard.Data;

View File

@@ -2,7 +2,7 @@
using System.Linq;
using JetBrains.Annotations;
using Orchard.Comments.Models;
using Orchard.Comments.Controlers;
using Orchard.Comments.Controllers;
using Orchard.ContentManagement.Aspects;
using Orchard.Data;
using Orchard.Logging;