Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutchinson@novell.com>2009-07-29 03:17:53 +0400
committerMichael Hutchinson <mhutchinson@novell.com>2009-07-29 03:17:53 +0400
commit4b4e59af95f80cd3fc7c65b4b8cdc72d25972311 (patch)
treecbe7a35d479795b54c1119111465d43d7946e5e4 /extras/AspNetEdit
parent29eeccc4971c73cb1d46b7d786e39177051a6411 (diff)
* AspNetEdit.Editor.UI/PropertyGrid.cs:
* AspNetEdit.Integration/AspNetEditViewContent.cs: Track PropertyGrid namespace move. svn path=/trunk/monodevelop/; revision=138895
Diffstat (limited to 'extras/AspNetEdit')
-rw-r--r--extras/AspNetEdit/AspNetEdit.Editor.UI/PropertyGrid.cs6
-rw-r--r--extras/AspNetEdit/AspNetEdit.Integration/AspNetEditViewContent.cs2
-rw-r--r--extras/AspNetEdit/ChangeLog6
3 files changed, 10 insertions, 4 deletions
diff --git a/extras/AspNetEdit/AspNetEdit.Editor.UI/PropertyGrid.cs b/extras/AspNetEdit/AspNetEdit.Editor.UI/PropertyGrid.cs
index ad6664810c..13fe8ab6e0 100644
--- a/extras/AspNetEdit/AspNetEdit.Editor.UI/PropertyGrid.cs
+++ b/extras/AspNetEdit/AspNetEdit.Editor.UI/PropertyGrid.cs
@@ -33,7 +33,7 @@ using System.ComponentModel.Design;
using Gtk;
using System.ComponentModel;
using System.Collections;
-using MonoDevelop.DesignerSupport.PropertyGrid;
+using MonoDevelop.Components.PropertyGrid;
namespace AspNetEdit.Editor.UI
{
@@ -44,7 +44,7 @@ namespace AspNetEdit.Editor.UI
private IExtenderListService extenderListService = null;
private IComponentChangeService changeService = null;
private ITypeDescriptorFilterService typeDescriptorFilterService = null;
- private MonoDevelop.DesignerSupport.PropertyGrid.PropertyGrid grid;
+ private MonoDevelop.Components.PropertyGrid.PropertyGrid grid;
private ListStore components;
private ComboBox combo;
@@ -54,7 +54,7 @@ namespace AspNetEdit.Editor.UI
{
this.parentServices = parentServices;
- grid = new MonoDevelop.DesignerSupport.PropertyGrid.PropertyGrid ();
+ grid = new MonoDevelop.Components.PropertyGrid.PropertyGrid ();
this.PackEnd (grid, true, true, 0);
diff --git a/extras/AspNetEdit/AspNetEdit.Integration/AspNetEditViewContent.cs b/extras/AspNetEdit/AspNetEdit.Integration/AspNetEditViewContent.cs
index 843a27550d..87bc71eb99 100644
--- a/extras/AspNetEdit/AspNetEdit.Integration/AspNetEditViewContent.cs
+++ b/extras/AspNetEdit/AspNetEdit.Integration/AspNetEditViewContent.cs
@@ -43,7 +43,7 @@ using MonoDevelop.Core.Gui;
using MonoDevelop.Core.Execution;
using MonoDevelop.DesignerSupport.Toolbox;
using MonoDevelop.DesignerSupport;
-using MonoDevelop.DesignerSupport.PropertyGrid;
+using MonoDevelop.Components.PropertyGrid;
using AspNetEdit.Editor;
namespace AspNetEdit.Integration
diff --git a/extras/AspNetEdit/ChangeLog b/extras/AspNetEdit/ChangeLog
index 8a4bc614f0..85f42b2566 100644
--- a/extras/AspNetEdit/ChangeLog
+++ b/extras/AspNetEdit/ChangeLog
@@ -1,3 +1,9 @@
+2009-07-28 Michael Hutchinson <mhutchinson@novell.com>
+
+ * AspNetEdit.Editor.UI/PropertyGrid.cs:
+ * AspNetEdit.Integration/AspNetEditViewContent.cs: Track
+ PropertyGrid namespace move.
+
2009-06-23 Michael Hutchinson <mhutchinson@novell.com>
* AspNetEdit.Integration/AspNetEditViewContent.cs: Fix build.