summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <sr55.hb@outlook.com>2009-07-31 15:50:17 +0000
committersr55 <sr55.hb@outlook.com>2009-07-31 15:50:17 +0000
commit6051aa0f78e07a069ea44230a72d2e765a1893ba (patch)
tree9732ceceb0cf76eafa2205e4154a8afb398ff16f /win/C#/frmMain.cs
parentc128a2446a8822918dcff743647a4645fe8c24a6 (diff)
WinGui:
- Fixed and issue during scan where missing audio track information would cause the log parser to throw an exception. - Added support for "Growl for Windows" http://growlforwindows.com/gfw/ - Thanks to bdunnington git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2739 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index e40f558f7..94e2cc6d0 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -119,6 +119,9 @@ namespace Handbrake
if (Properties.Settings.Default.tooltipEnable)
ToolTip.Active = true;
+ // Register with Growl (if not using Growl for the encoding completion action, this wont hurt anything)
+ GrowlCommunicator.Register();
+
//Finished Loading
lblStatus.Text = "Loading Complete!";
Application.DoEvents();
@@ -1440,7 +1443,7 @@ namespace Handbrake
dvdInfoPath);
}
- using (StreamReader sr = new StreamReader(dvdInfoPath))
+ using (StreamReader sr = new StreamReader("scanlog.txt"))
{
thisDVD = DVD.Parse(sr);
sr.Close();