From 0d75f719ea170cb0600b5f0d41991c679d1d1a41 Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Sun, 5 Aug 2007 20:33:33 +0000 Subject: [PATCH] Fixed build. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2632 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- AddIns/ICSharpCode.SharpDevelop.addin | 6 ------ .../FormsDesigner/Project/Src/Gui/AddComponentsDialog.cs | 4 ++-- .../Misc/MonoAddIn/Project/Src/MonoGacReferencePanel.cs | 2 +- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/AddIns/ICSharpCode.SharpDevelop.addin b/AddIns/ICSharpCode.SharpDevelop.addin index cf759ca266..0072d1e66d 100644 --- a/AddIns/ICSharpCode.SharpDevelop.addin +++ b/AddIns/ICSharpCode.SharpDevelop.addin @@ -2218,12 +2218,6 @@ - - - - - - diff --git a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/AddComponentsDialog.cs b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/AddComponentsDialog.cs index 92214ae6e5..57fa62526a 100644 --- a/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/AddComponentsDialog.cs +++ b/src/AddIns/DisplayBindings/FormsDesigner/Project/Src/Gui/AddComponentsDialog.cs @@ -50,8 +50,8 @@ namespace ICSharpCode.FormsDesigner.Gui void PrintGACCache() { - foreach (GacInterop.AssemblyListEntry asm in GacInterop.GetAssemblyList()) { - ListViewItem item = new ListViewItem(new string[] {asm.Name, asm.Version}); + foreach (DomAssemblyName asm in GacInterop.GetAssemblyList()) { + ListViewItem item = new ListViewItem(new string[] {asm.ShortName, asm.Version}); item.Tag = asm.FullName; ((ListView)ControlDictionary["gacListView"]).Items.Add(item); } diff --git a/src/AddIns/Misc/MonoAddIn/Project/Src/MonoGacReferencePanel.cs b/src/AddIns/Misc/MonoAddIn/Project/Src/MonoGacReferencePanel.cs index 375f477c0e..7afd2e2716 100644 --- a/src/AddIns/Misc/MonoAddIn/Project/Src/MonoGacReferencePanel.cs +++ b/src/AddIns/Misc/MonoAddIn/Project/Src/MonoGacReferencePanel.cs @@ -26,7 +26,7 @@ namespace ICSharpCode.MonoAddIn foreach (MonoAssemblyName assemblyName in MonoGlobalAssemblyCache.GetAssemblyNames()) { list.Add(new DomAssemblyName(assemblyName.FullName)); } - return itemList; + return list; } } }