Refactor src/Logic/BlueRaySup

This commit is contained in:
Ivandro Ismael 2015-07-31 20:01:05 +01:00
parent e26af6ddb0
commit e5f09feb03
11 changed files with 8 additions and 13 deletions

View File

@ -9,7 +9,6 @@ namespace Nikse.SubtitleEdit.Forms
{
public sealed partial class ChangeCasing : PositionAndSizeForm
{
private int _noOfLinesChanged;
public ChangeCasing()

View File

@ -18,7 +18,6 @@
namespace Nikse.SubtitleEdit.Logic.BluRaySup
{
public class BluRaySupPalette
{
/** Number of palette entries */

View File

@ -27,7 +27,6 @@ namespace Nikse.SubtitleEdit.Logic.BluRaySup
{
public static class BluRaySupParser
{
private class SupSegment
{
/// <summary>

View File

@ -569,4 +569,4 @@ namespace Nikse.SubtitleEdit.Logic.BluRaySup
}
}
}
}

View File

@ -87,4 +87,4 @@ namespace Nikse.SubtitleEdit.Logic.BluRaySup
public const double FpsTrg = FpsPal;
}
}
}

View File

@ -20,7 +20,6 @@ using System.Collections.Generic;
namespace Nikse.SubtitleEdit.Logic.BluRaySup
{
public class ImageObject
{
/// <summary>
@ -58,4 +57,4 @@ namespace Nikse.SubtitleEdit.Logic.BluRaySup
/// </summary>
public int YOffset { get; set; }
}
}
}

View File

@ -34,4 +34,4 @@ namespace Nikse.SubtitleEdit.Logic.BluRaySup
public byte[] ImageBuffer { get; set; }
}
}
}

View File

@ -47,4 +47,4 @@ namespace Nikse.SubtitleEdit.Logic.BluRaySup
}
}
}
}

View File

@ -21,7 +21,6 @@ namespace Nikse.SubtitleEdit.Logic.BluRaySup
{
public static class ToolBox
{
/// <summary>
/// Convert bytes to a C-style hex string with leading zeroes
/// </summary>

View File

@ -28,11 +28,11 @@ namespace Nikse.SubtitleEdit.Logic.ColorChooser
public ColorChangedEventArgs(ColorHandler.ARGB argb, ColorHandler.HSV hsv)
{
ARGB = argb;
this.HSV = hsv;
HSV = hsv;
}
public ColorHandler.ARGB ARGB { get; private set; }
public ColorHandler.HSV HSV { get; private set; }
}
}
}

View File

@ -254,4 +254,4 @@ namespace Nikse.SubtitleEdit.Logic.ColorChooser
#endregion Nested type: HSV
}
}
}