diff options
Diffstat (limited to 'win')
-rw-r--r-- | win/C#/HandBrakeCS.csproj | 1 | ||||
-rw-r--r-- | win/C#/frmMain.cs | 6 |
2 files changed, 2 insertions, 5 deletions
diff --git a/win/C#/HandBrakeCS.csproj b/win/C#/HandBrakeCS.csproj index 2316eb678..ebc5bfe41 100644 --- a/win/C#/HandBrakeCS.csproj +++ b/win/C#/HandBrakeCS.csproj @@ -63,7 +63,6 @@ <DependentUpon>frmOptions.cs</DependentUpon>
</Compile>
<Compile Include="Functions\CLI.cs" />
- <Compile Include="Functions\Update.cs" />
<Compile Include="Parsing\AudioTrack.cs" />
<Compile Include="Parsing\Chapter.cs" />
<Compile Include="Parsing\DVD.cs" />
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index 234af0aa4..428b1b06a 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -611,6 +611,7 @@ namespace Handbrake private void procMonitor(object state)
{
+ //******* BUG HERE, hbProc is not getting passed in here.
MessageBox.Show("The encode process has now started.", "Status", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
hbProc.WaitForExit();
hbProc.Close();
@@ -984,7 +985,7 @@ namespace Handbrake }
drp_audioChannels.Items.Clear();
- drp_subtitle.Items.Add("Automatic");
+ drp_audioChannels.Items.Add("Automatic");
drp_audioChannels.Items.AddRange(selectedTitle.AudioTracks.ToArray());
if (drp_audioChannels.Items.Count > 0)
{
@@ -1002,9 +1003,6 @@ namespace Handbrake }
// The Query Generation Function
- // This function was imported from old vb.net version of this application.
- // It could probably do with being cleaned up a good deal at some point
-
public string GenerateTheQuery()
{
string source = text_source.Text;
|