Minor cleanup

This commit is contained in:
Justin Aquadro 2012-11-11 00:57:38 -05:00
parent 5b9e51e436
commit 3676cc8aab
5 changed files with 12 additions and 9 deletions

View file

@ -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">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -80,18 +80,11 @@
<None Include="Properties\Resources.resx" />
<None Include="Properties\Settings.settings" />
<None Include="LICENSE.txt" />
<None Include="dead_bush.icns" />
<None Include="Mac\Scratch.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
<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\CubicRegionDataNode.cs" />

Binary file not shown.

Before

Width:  |  Height:  |  Size: 691 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 886 B

View file

@ -168,6 +168,16 @@ namespace Be.Windows.Forms
/// </summary>
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>
/// Reads a byte from the file.
/// </summary>

Binary file not shown.