diff options
author | sr55 <[email protected]> | 2012-05-26 19:46:10 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-05-26 19:46:10 +0000 |
commit | 12c2588e4d281f4cc16683d211a6cb8a76b4b1d5 (patch) | |
tree | 0b044cda72e3bc33a783b66799845e512fa87b06 /win/CS/HandBrakeWPF/Views/MainView.xaml.cs | |
parent | e171cf6645d2d43e44ec40a3f5f918b6397580c7 (diff) |
WinGui: Add a warning when closing the app while an encode is running. A fix for the Browse button not updating the Output format dropdown correctly.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4703 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/MainView.xaml.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/MainView.xaml.cs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/win/CS/HandBrakeWPF/Views/MainView.xaml.cs b/win/CS/HandBrakeWPF/Views/MainView.xaml.cs index 163a3d807..165e74923 100644 --- a/win/CS/HandBrakeWPF/Views/MainView.xaml.cs +++ b/win/CS/HandBrakeWPF/Views/MainView.xaml.cs @@ -9,7 +9,6 @@ namespace HandBrakeWPF.Views
{
- using System.Diagnostics;
using System.Windows;
/// <summary>
@@ -24,10 +23,5 @@ namespace HandBrakeWPF.Views {
InitializeComponent();
}
-
- private void Hyperlink_RequestNavigate(object sender, System.Windows.Navigation.RequestNavigateEventArgs e)
- {
- Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
- }
}
}
|