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:
authorMike Krüger <mkrueger@xamarin.com>2012-02-20 17:44:10 +0400
committerMike Krüger <mkrueger@xamarin.com>2012-02-20 17:44:10 +0400
commit99dd9729f5e2e4dcb6c9cb025f99cf7aaed115d3 (patch)
tree44958ee13f33ac715f56cb617f93b3c7784c0067 /main/src/addins/MonoDevelop.Moonlight
parentc4ef991ab62a3e450a3e9fa1c0802b661f931918 (diff)
Track API changes.
Diffstat (limited to 'main/src/addins/MonoDevelop.Moonlight')
-rwxr-xr-xmain/src/addins/MonoDevelop.Moonlight/MonoDevelop.Moonlight/MoonlightEditorExtension.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/src/addins/MonoDevelop.Moonlight/MonoDevelop.Moonlight/MoonlightEditorExtension.cs b/main/src/addins/MonoDevelop.Moonlight/MonoDevelop.Moonlight/MoonlightEditorExtension.cs
index cfd34f3075..1b90bb6b92 100755
--- a/main/src/addins/MonoDevelop.Moonlight/MonoDevelop.Moonlight/MoonlightEditorExtension.cs
+++ b/main/src/addins/MonoDevelop.Moonlight/MonoDevelop.Moonlight/MoonlightEditorExtension.cs
@@ -85,14 +85,14 @@ namespace MonoDevelop.Moonlight
//add atts only if they're not already in the tag
foreach (IProperty prop in GetUniqueMembers<IProperty> (controlClass.GetProperties ()))
if (prop.IsPublic && (existingAtts == null || !existingAtts.ContainsKey (prop.Name)))
- list.Add (prop.Name, prop.GetStockIcon (), prop.Documentation);
+ list.Add (prop.Name, prop.GetStockIcon (), prop.Documentation.Xml);
//similarly add events
foreach (var eve
in GetUniqueMembers<IEvent> (controlClass.GetEvents ())) {
string eveName = eve.Name;
if (eve.IsPublic && (existingAtts == null || !existingAtts.ContainsKey (eveName)))
- list.Add (eveName, eve.GetStockIcon (), eve.Documentation);
+ list.Add (eveName, eve.GetStockIcon (), eve.Documentation.Xml);
}
}
@@ -135,7 +135,7 @@ namespace MonoDevelop.Moonlight
ns = ns.GetChildNamespace (sn);
}
foreach (IType t in ListControlClasses (database, ns))
- list.Add (t.Name, Gtk.Stock.GoForward, t.GetDefinition ().Documentation);
+ list.Add (t.Name, Gtk.Stock.GoForward, t.GetDefinition ().Documentation.Xml);
}
}
@@ -190,7 +190,7 @@ namespace MonoDevelop.Moonlight
if (retCls != null && retCls.Kind == TypeKind.Enum) {
foreach (var enumVal in retCls.GetFields ())
if (enumVal.IsPublic && enumVal.IsStatic)
- list.Add (enumVal.Name, "md-literal", enumVal.Documentation);
+ list.Add (enumVal.Name, "md-literal", enumVal.Documentation.Xml);
return;
}
}