diff options
Diffstat (limited to 'win/C#/frmQueue.cs')
-rw-r--r-- | win/C#/frmQueue.cs | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/win/C#/frmQueue.cs b/win/C#/frmQueue.cs index d6b502643..eaa8904b1 100644 --- a/win/C#/frmQueue.cs +++ b/win/C#/frmQueue.cs @@ -42,8 +42,8 @@ namespace Handbrake progressBar.Update();
//ThreadPool.QueueUserWorkItem(startProc);
// Testing a new way of launching a thread. Hopefully will fix a random freeze up of the main thread.
- Thread test = new Thread(startProc);
- test.Start();
+ Thread theQ = new Thread(startProc);
+ theQ.Start();
}
}
catch (Exception exc)
@@ -263,12 +263,5 @@ namespace Handbrake base.OnClosing(e);
}
-
-
-
-
-
-
-
}
}
\ No newline at end of file |