summaryrefslogtreecommitdiffstats
path: root/win/C#/HandBrake.ApplicationServices/Services/Encode.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-11-11 12:26:34 +0000
committersr55 <[email protected]>2010-11-11 12:26:34 +0000
commit7943612c617b56c5932255c4ab3e0dc5b1cde33c (patch)
tree7aa9be368fb91fe4ef0d67ae7f85cf2e3a0a73fa /win/C#/HandBrake.ApplicationServices/Services/Encode.cs
parent3fdad03f776473d8c59c5779638b10d2af7fba80 (diff)
WinGui:
- Remove some code that has been causing a crash after encoding has completed. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3673 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/Services/Encode.cs')
-rw-r--r--win/C#/HandBrake.ApplicationServices/Services/Encode.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Services/Encode.cs b/win/C#/HandBrake.ApplicationServices/Services/Encode.cs
index 9e5d7beae..5e7527118 100644
--- a/win/C#/HandBrake.ApplicationServices/Services/Encode.cs
+++ b/win/C#/HandBrake.ApplicationServices/Services/Encode.cs
@@ -110,11 +110,6 @@ namespace HandBrake.ApplicationServices.Services
protected Process HbProcess { get; set; }
/// <summary>
- /// Determines if the process was killed or safely closed.
- /// </summary>
- private bool processKilled;
-
- /// <summary>
/// Gets a value indicating whether IsEncoding.
/// </summary>
public bool IsEncoding { get; private set; }
@@ -339,12 +334,6 @@ namespace HandBrake.ApplicationServices.Services
/// </param>
private void HbProcess_Exited(object sender, EventArgs e)
{
- if (HbProcess != null && HbProcess.HasExited && HbProcess.ExitCode != 0 && !processKilled)
- {
- errorService.ShowError("It appears that HandBrakeCLI has crashed. You can check the Activity Log for further information.", string.Format("Exit Code was: {0}", HbProcess.ExitCode));
- }
-
- processKilled = false;
IsEncoding = false;
if (this.EncodeEnded != null)
this.EncodeEnded(this, new EventArgs());