summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--win/C#/Changelog.html2
-rw-r--r--win/C#/Functions/GrowlCommunicator.cs6
-rw-r--r--win/C#/Functions/Main.cs8
-rw-r--r--win/C#/frmMain.cs2
4 files changed, 15 insertions, 3 deletions
diff --git a/win/C#/Changelog.html b/win/C#/Changelog.html
index 266c06811..fc6cfe15e 100644
--- a/win/C#/Changelog.html
+++ b/win/C#/Changelog.html
@@ -11,7 +11,7 @@ Windows Platform Specific Changlog.<br />
<h2>Changes since Snapshot 1 - SVN2592</h2>
<h4>Major Changes</h4>
- - Added support for Sparkle for Windows.<br />
+ - Added support for Growl for Windows.<br />
- Import MacGUI presets.<br />
- External SRT supported added.<br />
diff --git a/win/C#/Functions/GrowlCommunicator.cs b/win/C#/Functions/GrowlCommunicator.cs
index eb4091a43..7403a80a2 100644
--- a/win/C#/Functions/GrowlCommunicator.cs
+++ b/win/C#/Functions/GrowlCommunicator.cs
@@ -1,3 +1,9 @@
+/* GrowlCommunicator.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. */
+
using System;
using System.Collections.Generic;
using System.Text;
diff --git a/win/C#/Functions/Main.cs b/win/C#/Functions/Main.cs
index 9a8b9a02f..db127b261 100644
--- a/win/C#/Functions/Main.cs
+++ b/win/C#/Functions/Main.cs
@@ -80,6 +80,12 @@ namespace Handbrake.Functions
return dataChpt;
}
+ /// <summary>
+ /// Import a CSV file which contains Chapter Names
+ /// </summary>
+ /// <param name="dataChpt"></param>
+ /// <param name="filename"></param>
+ /// <returns></returns>
public static DataGridView importChapterNames(DataGridView dataChpt, string filename)
{
IDictionary<int, string> chapterMap = new Dictionary<int, string>();
@@ -241,7 +247,7 @@ namespace Handbrake.Functions
/// If it does, it means the last queue did not complete before HandBrake closed.
/// So, return a boolean if true.
/// </summary>
- public static Boolean check_queue_recovery()
+ public static Boolean checkQueueRecovery()
{
try
{
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index b6b156cbb..dd612e212 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -164,7 +164,7 @@ namespace Handbrake
// Startup Functions
private void queueRecovery()
{
- if (Main.check_queue_recovery())
+ if (Main.checkQueueRecovery())
{
DialogResult result = MessageBox.Show("HandBrake has detected unfinished items on the queue from the last time the application was launched. Would you like to recover these?", "Queue Recovery Possible", MessageBoxButtons.YesNo, MessageBoxIcon.Question);