summaryrefslogtreecommitdiffstats
path: root/win/C#/Parsing/Parser.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2009-04-01 23:48:34 +0000
committersr55 <[email protected]>2009-04-01 23:48:34 +0000
commit414d6a56cc67f2fa56353ee3ce80adaa8cfeb45f (patch)
tree171172730223e0e525b68f4afb3ea6ff2e5ccc9c /win/C#/Parsing/Parser.cs
parent683faec1c917365b32332d86693e72479ba315bf (diff)
WinGui:
- Just some minor code tweaks to clean things up. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2291 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Parsing/Parser.cs')
-rw-r--r--win/C#/Parsing/Parser.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/win/C#/Parsing/Parser.cs b/win/C#/Parsing/Parser.cs
index 24dcef40f..c15275030 100644
--- a/win/C#/Parsing/Parser.cs
+++ b/win/C#/Parsing/Parser.cs
@@ -37,7 +37,7 @@ namespace Handbrake.Parsing
{
get
{
- return this.m_buffer;
+ return m_buffer;
}
}
@@ -64,14 +64,14 @@ namespace Handbrake.Parsing
public Parser(Stream baseStream)
: base(baseStream)
{
- this.m_buffer = string.Empty;
+ m_buffer = string.Empty;
}
public override string ReadLine()
{
string tmp = base.ReadLine();
- this.m_buffer += tmp;
+ m_buffer += tmp;
Match m = Regex.Match(tmp, "^Scanning title ([0-9]*) of ([0-9]*)");
if (OnReadLine != null)
OnReadLine(this, tmp);
@@ -86,7 +86,7 @@ namespace Handbrake.Parsing
{
string tmp = base.ReadToEnd();
- this.m_buffer += tmp;
+ m_buffer += tmp;
if (OnReadToEnd != null)
OnReadToEnd(this, tmp);