mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-10 01:46:24 +00:00
Minor cleanup
This commit is contained in:
parent
5b9e51e436
commit
3676cc8aab
5 changed files with 12 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
@ -80,18 +80,11 @@
|
||||||
<None Include="Properties\Resources.resx" />
|
<None Include="Properties\Resources.resx" />
|
||||||
<None Include="Properties\Settings.settings" />
|
<None Include="Properties\Settings.settings" />
|
||||||
<None Include="LICENSE.txt" />
|
<None Include="LICENSE.txt" />
|
||||||
<None Include="dead_bush.icns" />
|
|
||||||
<None Include="Mac\Scratch.cs" />
|
<None Include="Mac\Scratch.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||||
<Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
|
<Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
|
||||||
<ItemGroup>
|
<ItemGroup />
|
||||||
<Folder Include="Model\" />
|
|
||||||
<Folder Include="Properties\" />
|
|
||||||
<Folder Include="Resources\" />
|
|
||||||
<Folder Include="Mac\" />
|
|
||||||
<Folder Include="Resources\24\" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Model\CompoundTagContainer.cs" />
|
<Compile Include="Model\CompoundTagContainer.cs" />
|
||||||
<Compile Include="Model\CubicRegionDataNode.cs" />
|
<Compile Include="Model\CubicRegionDataNode.cs" />
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 691 B |
Binary file not shown.
Before Width: | Height: | Size: 886 B |
|
@ -168,6 +168,16 @@ namespace Be.Windows.Forms
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public event EventHandler LengthChanged;
|
public event EventHandler LengthChanged;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Never Used
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="e">Event Args</param>
|
||||||
|
protected virtual void OnLengthChanged (EventArgs e)
|
||||||
|
{
|
||||||
|
if (LengthChanged != null)
|
||||||
|
LengthChanged(this, e);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Reads a byte from the file.
|
/// Reads a byte from the file.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
BIN
dead_bush.icns
BIN
dead_bush.icns
Binary file not shown.
Loading…
Reference in a new issue