summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-09-09 16:48:33 +0000
committersr55 <[email protected]>2008-09-09 16:48:33 +0000
commit57dc995028ba55fb514d29855bf0e01f1903791b (patch)
treeaf53fdbaa3ec1dd3567d5e29008845974b464258 /win/C#/frmMain.cs
parent38340006c9205d3fe61fa8e4bad54afcac64d282 (diff)
WinGui:
- Allow users to manually import / export the queue. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1682 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 7e673f1e1..e05ea9c1a 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -172,7 +172,7 @@ namespace Handbrake
result = MessageBox.Show("HandBrake has detected unfinished items on the queue from the last time the application was launched. Would you like to recover these?", "Queue Recovery Possible", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (result == DialogResult.Yes)
- encodeQueue.recoverQueue(); // Start Recovery
+ encodeQueue.recoverQueue("hb_queue_recovery.dat"); // Start Recovery
else
{
// Remove the Queue recovery file if the user doesn't want to recovery the last queue.
@@ -356,7 +356,7 @@ namespace Handbrake
query = rtf_query.Text;
encodeQueue.add(query);
- encodeQueue.write2disk(); // Writes the queue to the recovery file, just incase the GUI crashes.
+ encodeQueue.write2disk("hb_queue_recovery.dat"); // Writes the queue to the recovery file, just incase the GUI crashes.
queueWindow.setQueue(encodeQueue);
queueWindow.Show();