diff options
author | sr55 <[email protected]> | 2010-11-09 18:03:22 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-11-09 18:03:22 +0000 |
commit | 0a3e31afad326c3eec231107d0d46bb128610370 (patch) | |
tree | 4812421c8b0ce2a632ae4d819038c56fa2d4c33f | |
parent | 4affa39380b06ffae790419edfc4a8d1286e8dac (diff) |
WinGui:
- Missed comment and reset.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3667 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | win/C#/HandBrake.ApplicationServices/Services/Encode.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Services/Encode.cs b/win/C#/HandBrake.ApplicationServices/Services/Encode.cs index 3e0e31e11..9e5d7beae 100644 --- a/win/C#/HandBrake.ApplicationServices/Services/Encode.cs +++ b/win/C#/HandBrake.ApplicationServices/Services/Encode.cs @@ -109,6 +109,9 @@ namespace HandBrake.ApplicationServices.Services /// </summary>
protected Process HbProcess { get; set; }
+ /// <summary>
+ /// Determines if the process was killed or safely closed.
+ /// </summary>
private bool processKilled;
/// <summary>
@@ -341,6 +344,7 @@ namespace HandBrake.ApplicationServices.Services 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());
|