summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Services
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-03-27 13:52:36 +0000
committersr55 <[email protected]>2011-03-27 13:52:36 +0000
commitcb05e46863daec1a73f6b53bc6092d16e40c98a6 (patch)
tree65d748c52d7cbc301ac2076eea556bc1d6fb079e /win/CS/HandBrake.ApplicationServices/Services
parent3dbaa1fabfb4b98b46a2d0eed6a426c06bd59b98 (diff)
WinGui:
- Remove built-in quicktime based video preview support. - Resigned the Preview window as a result. Currently only supports VLC launching, but will later add an option to use the systems default player for the format produced. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3882 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Services/QueueManager.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/QueueManager.cs b/win/CS/HandBrake.ApplicationServices/Services/QueueManager.cs
index 7f723b8b4..ad56043ac 100644
--- a/win/CS/HandBrake.ApplicationServices/Services/QueueManager.cs
+++ b/win/CS/HandBrake.ApplicationServices/Services/QueueManager.cs
@@ -52,11 +52,6 @@ namespace HandBrake.ApplicationServices.Services
/// </summary>
private int lastJobId;
- /// <summary>
- /// The instance Id of this HandBrake instance.
- /// </summary>
- private int instanceId;
-
#endregion
/// <summary>
@@ -67,8 +62,6 @@ namespace HandBrake.ApplicationServices.Services
/// </param>
public QueueManager(int instanceId)
{
- this.instanceId = instanceId;
-
// If this is the first instance, just use the main queue file, otherwise add the instance id to the filename.
this.queueFile = instanceId == 0 ? "hb_queue_recovery.xml" : string.Format("hb_queue_recovery{0}.xml", instanceId);
}