diff options
author | sr55 <[email protected]> | 2009-05-23 14:57:00 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-05-23 14:57:00 +0000 |
commit | ee294958088a96ca232a1334eea6542dd7e30d60 (patch) | |
tree | 56fd62f1f300c731ee3316b52a8d65dc247bc695 /win/C#/frmActivityWindow.cs | |
parent | b1ef4b866e0a29e3274d521eb0b768d48195fc9e (diff) |
WinGui:WinGui:
- Stop button, now allows the CLI to cleanly exit by sending ctrl-c rather than killing the process.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2444 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmActivityWindow.cs')
-rw-r--r-- | win/C#/frmActivityWindow.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/win/C#/frmActivityWindow.cs b/win/C#/frmActivityWindow.cs index dc979f28e..981ed2f34 100644 --- a/win/C#/frmActivityWindow.cs +++ b/win/C#/frmActivityWindow.cs @@ -9,6 +9,7 @@ using System.Windows.Forms; using System.IO;
using System.Threading;
using System.Runtime.InteropServices;
+using Handbrake.EncodeQueue;
using Microsoft.Win32;
@@ -19,7 +20,7 @@ namespace Handbrake delegate void SetTextCallback(string text);
String read_file;
Thread monitor;
- Queue.QueueHandler encodeQueue;
+ QueueHandler encodeQueue;
int position; // Position in the arraylist reached by the current log output in the rtf box.
string logDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\HandBrake\\logs";
private frmMain mainWin;
@@ -27,7 +28,7 @@ namespace Handbrake /// <summary>
/// This window should be used to display the RAW output of the handbrake CLI which is produced during an encode.
/// </summary>
- public frmActivityWindow(string file, Queue.QueueHandler eh, frmMain mw)
+ public frmActivityWindow(string file, QueueHandler eh, frmMain mw)
{
InitializeComponent();
|