diff options
author | sr55 <[email protected]> | 2007-12-19 22:10:27 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-12-19 22:10:27 +0000 |
commit | 5757d7c7295572f8dd8f078dcceddf8728e075f3 (patch) | |
tree | 10cd21ca48ae8f148fbe12aa5be3f17c1e47ef3a /win/C#/Functions/CLI.cs | |
parent | 9edd509f7e84d131107f523219032f221a355e56 (diff) |
WinGui:
- Some code clean up + removal of old unused code.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1137 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/CLI.cs')
-rw-r--r-- | win/C#/Functions/CLI.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/win/C#/Functions/CLI.cs b/win/C#/Functions/CLI.cs index 259a98c3a..b0b79d32f 100644 --- a/win/C#/Functions/CLI.cs +++ b/win/C#/Functions/CLI.cs @@ -60,28 +60,5 @@ namespace Handbrake.Functions }
return hbProc;
}
-
- public void killCLI()
- {
- try
- {
- hbProc.Kill();
- }
- catch (Exception)
- {
- // No need to do anything. Chances are the process was already dead.
- }
- }
-
- public void closeCLI()
- {
- hbProc.Close();
- hbProc.Dispose();
- }
-
- public void setNull()
- {
- hbProc = new Process();
- }
}
}
|