OSDN Git Service

WinGui:
authorsr55 <sr55@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Sat, 8 Aug 2009 13:24:24 +0000 (13:24 +0000)
committersr55 <sr55@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Sat, 8 Aug 2009 13:24:24 +0000 (13:24 +0000)
- Minor Code tweak / correction in Changelog.html

git-svn-id: svn://localhost/HandBrake/trunk@2754 b64f7644-9d1e-0410-96f1-a4d463321fa5

win/C#/Changelog.html
win/C#/Functions/GrowlCommunicator.cs
win/C#/Functions/Main.cs
win/C#/frmMain.cs

index 266c068..fc6cfe1 100644 (file)
@@ -11,7 +11,7 @@ Windows Platform Specific Changlog.<br />
     <h2>Changes since Snapshot 1 - SVN2592</h2>\r
     \r
     <h4>Major Changes</h4>\r
-    - Added support for Sparkle for Windows.<br />\r
+    - Added support for Growl for Windows.<br />\r
     - Import MacGUI presets.<br />\r
     - External SRT supported added.<br />\r
     \r
index eb4091a..7403a80 100644 (file)
@@ -1,3 +1,9 @@
+/*  GrowlCommunicator.cs $\r
+       \r
+          This file is part of the HandBrake source code.\r
+          Homepage: <http://handbrake.fr>.\r
+          It may be used under the terms of the GNU General Public License. */\r
+\r
 using System;\r
 using System.Collections.Generic;\r
 using System.Text;\r
index 9a8b9a0..db127b2 100644 (file)
@@ -80,6 +80,12 @@ namespace Handbrake.Functions
             return dataChpt;\r
         }\r
 \r
+        /// <summary>\r
+        /// Import a CSV file which contains Chapter Names\r
+        /// </summary>\r
+        /// <param name="dataChpt"></param>\r
+        /// <param name="filename"></param>\r
+        /// <returns></returns>\r
         public static DataGridView importChapterNames(DataGridView dataChpt, string filename)\r
         {\r
             IDictionary<int, string> chapterMap = new Dictionary<int, string>();\r
@@ -241,7 +247,7 @@ namespace Handbrake.Functions
         /// If it does, it means the last queue did not complete before HandBrake closed.\r
         /// So, return a boolean if true. \r
         /// </summary>\r
-        public static Boolean check_queue_recovery()\r
+        public static Boolean checkQueueRecovery()\r
         {\r
             try\r
             {\r
index b6b156c..dd612e2 100644 (file)
@@ -164,7 +164,7 @@ namespace Handbrake
         // Startup Functions   \r
         private void queueRecovery()\r
         {\r
-            if (Main.check_queue_recovery())\r
+            if (Main.checkQueueRecovery())\r
             {\r
                 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);\r
 \r