summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Utilities
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-06-15 17:45:06 +0000
committersr55 <[email protected]>2011-06-15 17:45:06 +0000
commitb957ee1aaba01b06d9f8b3f26e0385eba061baf2 (patch)
tree6ca577f1f7cb978c1311b444be9bcac5da4ad373 /win/CS/HandBrake.ApplicationServices/Utilities
parent4d7216fba8652a83821be49cd16cc851b5cc4cd2 (diff)
WinGui:
- Correctly set the number of previews to generate during Scan - Fix an issue where the CLI query is not printed to the log window. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4061 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Utilities')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Utilities/GeneralUtilities.cs11
1 files changed, 1 insertions, 10 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/GeneralUtilities.cs b/win/CS/HandBrake.ApplicationServices/Utilities/GeneralUtilities.cs
index 61aeef1d7..0ad9b6a8d 100644
--- a/win/CS/HandBrake.ApplicationServices/Utilities/GeneralUtilities.cs
+++ b/win/CS/HandBrake.ApplicationServices/Utilities/GeneralUtilities.cs
@@ -99,13 +99,10 @@ namespace HandBrake.ApplicationServices.Utilities
/// <summary>
/// Add the CLI Query to the Log File.
/// </summary>
- /// <param name="encJob">
- /// The Encode Job Object
- /// </param>
/// <returns>
/// The create cli log header.
/// </returns>
- public static StringBuilder CreateCliLogHeader(QueueTask encJob)
+ public static StringBuilder CreateCliLogHeader()
{
StringBuilder logHeader = new StringBuilder();
@@ -118,12 +115,6 @@ namespace HandBrake.ApplicationServices.Utilities
logHeader.AppendLine(String.Format("Install Dir: {0}", Application.StartupPath));
logHeader.AppendLine(String.Format("Data Dir: {0}\n", Application.UserAppDataPath));
- if (encJob != null)
- {
- logHeader.AppendLine(String.Format("CLI Query: {0}", encJob.Query));
- logHeader.AppendLine(String.Format("User Query: {0}", encJob.CustomQuery));
- }
-
logHeader.AppendLine("-------------------------------------------");
return logHeader;