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

@ -20,7 +20,6 @@ using System.Collections.Generic;
namespace Nikse.SubtitleEdit.Logic.BluRaySup
{
public class ImageObject
{
/// <summary>

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,7 +28,7 @@ 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; }