diff options
author | sr55 <[email protected]> | 2008-07-07 22:05:18 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-07-07 22:05:18 +0000 |
commit | e102ca7f6cfd706c1f153b2ea7ec6b2f58ba1720 (patch) | |
tree | e6dd8fe4edfb45853a3f6910b676a1a5207eaf74 /win/C#/frmReadDVD.cs | |
parent | b87f5a6f8535c6fd6d86fa90079eb9185a457620 (diff) |
WinGui:
- Version information now pulled from the CLI (any problems with this breaking on Vista let me know plz!)
- GUI startup optimized to counter the effect of the slightly sluggish version check from CLI (above)
- Added "Format" box just like the macgui. Move the Video Codec dropdown to the correct position on the video tab.
- Few other changes to mimic the macgui.
- Changed Functions.CLI to Functions.Encode
- Cleaned up and added icons to the source menu.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1558 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmReadDVD.cs')
-rw-r--r-- | win/C#/frmReadDVD.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/win/C#/frmReadDVD.cs b/win/C#/frmReadDVD.cs index d845efc27..3eb212d4f 100644 --- a/win/C#/frmReadDVD.cs +++ b/win/C#/frmReadDVD.cs @@ -34,7 +34,6 @@ namespace Handbrake this.inputFile = inputFile;
this.mainWindow = parent;
startScan();
-
}
private void startScan()
@@ -82,7 +81,7 @@ namespace Handbrake }
}
- Functions.CLI process = new Functions.CLI();
+ Functions.Encode process = new Functions.Encode();
private void startProc(object state)
{
@@ -91,7 +90,7 @@ namespace Handbrake string handbrakeCLIPath = Path.Combine(Application.StartupPath, "HandBrakeCLI.exe");
string dvdInfoPath = Path.Combine(Path.GetTempPath(), "dvdinfo.dat");
- // Make we don't pick up a stale dvdinfo.dat (and that we have rights to the file)
+ // Make we don't pick up a stale hb_encode_log.dat (and that we have rights to the file)
if (File.Exists(dvdInfoPath))
File.Delete(dvdInfoPath);
|