summaryrefslogtreecommitdiffstats
path: root/win/C#
diff options
context:
space:
mode:
authorsr55 <[email protected]>2009-08-08 13:24:24 +0000
committersr55 <[email protected]>2009-08-08 13:24:24 +0000
commitbb14bae8d88bc57be47531492f402d0c114fbd66 (patch)
treef94162627dc59d9cd55716862a2664fa395c2b00 /win/C#
parentf3a6967bf5ba2aad43ed4a8e599719950ca91246 (diff)
WinGui:
- Minor Code tweak / correction in Changelog.html git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2754 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#')
-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);