diff options
author | sr55 <[email protected]> | 2010-04-17 13:44:35 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-04-17 13:44:35 +0000 |
commit | f2826248fce3d14896de6a02e5f59c9ecc69d1f8 (patch) | |
tree | 60648fb7932324d400b8c2d74490183e515cc6af /win/C#/Parsing/DVD.cs | |
parent | 39c24561af3b8dd56ad689567af834faf2a6a3da (diff) |
WinGui:
- More stylecop warnings cleaned up
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3235 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Parsing/DVD.cs')
-rw-r--r-- | win/C#/Parsing/DVD.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/win/C#/Parsing/DVD.cs b/win/C#/Parsing/DVD.cs index 348da3190..336ff6d94 100644 --- a/win/C#/Parsing/DVD.cs +++ b/win/C#/Parsing/DVD.cs @@ -1,8 +1,8 @@ /* DVD.cs $
- This file is part of the HandBrake source code.
- Homepage: <http://handbrake.fr>.
- It may be used under the terms of the GNU General Public License. */
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
namespace Handbrake.Parsing
{
@@ -14,7 +14,7 @@ namespace Handbrake.Parsing /// </summary>
public class DVD
{
- private readonly List<Title> m_titles;
+ private readonly List<Title> titles;
/// <summary>
/// Initializes a new instance of the <see cref="DVD"/> class.
@@ -22,7 +22,7 @@ namespace Handbrake.Parsing /// </summary>
public DVD()
{
- m_titles = new List<Title>();
+ titles = new List<Title>();
}
/// <summary>
@@ -30,7 +30,7 @@ namespace Handbrake.Parsing /// </summary>
public List<Title> Titles
{
- get { return m_titles; }
+ get { return titles; }
}
public static DVD Parse(StreamReader output)
@@ -40,7 +40,7 @@ namespace Handbrake.Parsing while (!output.EndOfStream)
{
if ((char) output.Peek() == '+')
- thisDVD.m_titles.AddRange(Title.ParseList(output.ReadToEnd()));
+ thisDVD.titles.AddRange(Title.ParseList(output.ReadToEnd()));
else
output.ReadLine();
}
|