diff options
Diffstat (limited to 'win/C#/Functions')
-rw-r--r-- | win/C#/Functions/GrowlCommunicator.cs | 6 | ||||
-rw-r--r-- | win/C#/Functions/Main.cs | 8 |
2 files changed, 13 insertions, 1 deletions
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
{
|