diff options
author | sr55 <[email protected]> | 2009-01-03 22:46:52 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-01-03 22:46:52 +0000 |
commit | 7c7ee204435c13146895355b545d313c1cc7a707 (patch) | |
tree | 013c6af3fb9801ddfc112f7561318b3e65c64430 /win/C#/Queue | |
parent | 0b30a330672919074117c371de7d1fee4ff5cbbc (diff) |
WinGui:
- Fixes some bugs/issues with the Queue Windows / Main Window Queue/Encoding tie-in
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2057 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Queue')
-rw-r--r-- | win/C#/Queue/QueueHandler.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/win/C#/Queue/QueueHandler.cs b/win/C#/Queue/QueueHandler.cs index 6810dec5f..956801401 100644 --- a/win/C#/Queue/QueueHandler.cs +++ b/win/C#/Queue/QueueHandler.cs @@ -5,10 +5,12 @@ using System.Collections; using System.IO;
using System.Windows.Forms;
using System.Xml.Serialization;
+using System.Threading;
+using System.Diagnostics;
namespace Handbrake.Queue
{
- public class Queue
+ public class QueueHandler
{
private static XmlSerializer ser = new XmlSerializer(typeof(List<QueueItem>));
List<QueueItem> queue = new List<QueueItem>();
@@ -37,7 +39,7 @@ namespace Handbrake.Queue /// Get the last query that was returned by getNextItemForEncoding()
/// </summary>
/// <returns></returns>
- public QueueItem getLastQuery()
+ public QueueItem getLastQueryItem()
{
return lastItem;
}
@@ -201,5 +203,5 @@ namespace Handbrake.Queue }
}
}
- }
+ }
}
|