diff options
author | sr55 <[email protected]> | 2010-07-22 19:05:27 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-07-22 19:05:27 +0000 |
commit | 4bef20d6e23432eeeeaae0d15c1a240780913046 (patch) | |
tree | ef02d5a56e6928ce80bc5442858f7b8ecd71b48f /win/C#/HandBrake.ApplicationServices/Services/Encode.cs | |
parent | b05d02cb320dbec5a60247d87a6c47e6d7b8d456 (diff) |
WinGui:
- Fix an issue that would cause the in-gui encode status to screw up if the encoding time was over 24 hours.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3457 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/Services/Encode.cs')
-rw-r--r-- | win/C#/HandBrake.ApplicationServices/Services/Encode.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Services/Encode.cs b/win/C#/HandBrake.ApplicationServices/Services/Encode.cs index 87b0e0027..09099ba13 100644 --- a/win/C#/HandBrake.ApplicationServices/Services/Encode.cs +++ b/win/C#/HandBrake.ApplicationServices/Services/Encode.cs @@ -498,7 +498,7 @@ namespace HandBrake.ApplicationServices.Services /// <param name="currentFps">Current encode speed in fps</param>
/// <param name="avg">Avg encode speed</param>
/// <param name="timeRemaining">Time Left</param>
- private void EncodeOnEncodeProgress(object sender, int currentTask, int taskCount, float percentComplete, float currentFps, float avg, TimeSpan timeRemaining)
+ private void EncodeOnEncodeProgress(object sender, int currentTask, int taskCount, float percentComplete, float currentFps, float avg, string timeRemaining)
{
EncodeProgressEventArgs eventArgs = new EncodeProgressEventArgs
{
|