Browse Source

File filter now showing correct string and filter working when opening assemblies into the Component Inspector. Fixed missing menu item text in Component Inspector's object tree context menu.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1812 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 19 years ago
parent
commit
d356220e74
  1. 2
      src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/ComponentInspector.AddIn.csproj
  2. 2
      src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/OpenAssemblyCommand.cs
  3. 2
      src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/ComponentInspector.Core.csproj
  4. 2
      src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActionMenuHelper.cs
  5. 8
      src/AddIns/Misc/ComponentInspector/ComponentInspector.sln
  6. 2
      src/AddIns/Misc/ComponentInspector/ComponentInspector/ComponentInspector.csproj

2
src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/ComponentInspector.AddIn.csproj

@ -21,7 +21,7 @@ @@ -21,7 +21,7 @@
<IntermediateOutputPath>obj\Debug\</IntermediateOutputPath>
<OutputPath>..\..\..\..\..\AddIns\AddIns\Misc\ComponentInspector\</OutputPath>
<Optimize>False</Optimize>
<DefineConstants>DEBUG%3bTRACE</DefineConstants>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<DebugType>Full</DebugType>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>

2
src/AddIns/Misc/ComponentInspector/ComponentInspector.AddIn/Src/OpenAssemblyCommand.cs

@ -22,7 +22,7 @@ namespace ICSharpCode.ComponentInspector.AddIn @@ -22,7 +22,7 @@ namespace ICSharpCode.ComponentInspector.AddIn
using (OpenFileDialog dialog = new OpenFileDialog()) {
dialog.CheckFileExists = true;
dialog.Filter = StringParser.Parse("${res:ComponentInspector.ObjectBrowserForm.AssemblyFilesFilterName} (*.exe;*.dll)|(*.exe;*.dll)|${res:edit SharpDevelop.FileFilter.AllFiles}|(*.*)");
dialog.Filter = StringParser.Parse("${res:ComponentInspector.ObjectBrowserForm.AssemblyFilesFilterName} (*.exe;*.dll)|*.exe;*.dll|${res:SharpDevelop.FileFilter.AllFiles}|*.*");
dialog.FilterIndex = 0;
if (DialogResult.OK == dialog.ShowDialog()) {
ComponentInspectorView.Instance.OpenFile(dialog.FileName);

2
src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/ComponentInspector.Core.csproj

@ -22,7 +22,7 @@ @@ -22,7 +22,7 @@
<IntermediateOutputPath>obj\Debug\</IntermediateOutputPath>
<OutputPath>..\..\..\..\..\AddIns\AddIns\Misc\ComponentInspector\</OutputPath>
<Optimize>False</Optimize>
<DefineConstants>DEBUG%3bTRACE</DefineConstants>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<DebugType>Full</DebugType>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>

2
src/AddIns/Misc/ComponentInspector/ComponentInspector.Core/Src/ObjectBrowser/ActionMenuHelper.cs

@ -70,7 +70,7 @@ namespace NoGoop.ObjBrowser @@ -70,7 +70,7 @@ namespace NoGoop.ObjBrowser
}
}
internal ActionMenuHelper()
internal ActionMenuHelper() : this(null)
{
}

8
src/AddIns/Misc/ComponentInspector/ComponentInspector.sln

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
Microsoft Visual Studio Solution File, Format Version 9.00
# SharpDevelop 2.1.0.1298
# SharpDevelop 2.1.0.1782
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComponentInspector", "ComponentInspector\ComponentInspector.csproj", "{000E4F64-5D0D-4EB1-B0BF-1A62ADBC6EAD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComponentInspector.AddIn", "ComponentInspector.AddIn\ComponentInspector.AddIn.csproj", "{869951D5-A0D6-4DC6-9F1D-E6B9A12AC446}"
@ -16,6 +16,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinFormsUI", "..\..\..\Libr @@ -16,6 +16,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinFormsUI", "..\..\..\Libr
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NRefactory", "..\..\..\Libraries\NRefactory\Project\NRefactory.csproj", "{3A9AE6AA-BC07-4A2F-972C-581E3AE2F195}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpDevelop.Dom", "..\..\..\Main\ICSharpCode.SharpDevelop.Dom\Project\ICSharpCode.SharpDevelop.Dom.csproj", "{924EE450-603D-49C1-A8E5-4AFAA31CE6F3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -54,5 +56,9 @@ Global @@ -54,5 +56,9 @@ Global
{3A9AE6AA-BC07-4A2F-972C-581E3AE2F195}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3A9AE6AA-BC07-4A2F-972C-581E3AE2F195}.Release|Any CPU.Build.0 = Release|Any CPU
{3A9AE6AA-BC07-4A2F-972C-581E3AE2F195}.Release|Any CPU.ActiveCfg = Release|Any CPU
{924EE450-603D-49C1-A8E5-4AFAA31CE6F3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{924EE450-603D-49C1-A8E5-4AFAA31CE6F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{924EE450-603D-49C1-A8E5-4AFAA31CE6F3}.Release|Any CPU.Build.0 = Release|Any CPU
{924EE450-603D-49C1-A8E5-4AFAA31CE6F3}.Release|Any CPU.ActiveCfg = Release|Any CPU
EndGlobalSection
EndGlobal

2
src/AddIns/Misc/ComponentInspector/ComponentInspector/ComponentInspector.csproj

@ -21,7 +21,7 @@ @@ -21,7 +21,7 @@
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>..\..\..\..\..\bin\Tools\ComponentInspector\</OutputPath>
<Optimize>False</Optimize>
<DefineConstants>DEBUG%3bTRACE</DefineConstants>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<DebugType>Full</DebugType>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>

Loading…
Cancel
Save