summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-06-14 18:09:38 +0000
committersr55 <[email protected]>2012-06-14 18:09:38 +0000
commit6b07388d5ea2ee6fdb8613d024913062dbcbd72a (patch)
tree820ac9c0f9fce8c6d23f0a47420b936e44ee7faf /win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
parent92292ed049a2f87f00cad38dcb659fe6b4f68623 (diff)
WinGui: Strip out more legacy code.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4733 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
index d0a6450c8..ff5594975 100644
--- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
@@ -14,7 +14,6 @@ namespace HandBrakeWPF.ViewModels
using System.ComponentModel;
using System.ComponentModel.Composition;
using System.Diagnostics;
- using System.Drawing;
using System.IO;
using System.Linq;
using System.Windows;
@@ -24,7 +23,6 @@ namespace HandBrakeWPF.ViewModels
using Caliburn.Micro;
using HandBrake.ApplicationServices;
- using HandBrake.ApplicationServices.Exceptions;
using HandBrake.ApplicationServices.Model;
using HandBrake.ApplicationServices.Model.Encoding;
using HandBrake.ApplicationServices.Parsing;
@@ -34,7 +32,6 @@ namespace HandBrakeWPF.ViewModels
using HandBrakeWPF.Helpers;
using HandBrakeWPF.Model;
using HandBrakeWPF.ViewModels.Interfaces;
- using HandBrakeWPF.Views;
using Ookii.Dialogs.Wpf;
@@ -305,7 +302,6 @@ namespace HandBrakeWPF.ViewModels
fileMenuItem.Click += this.fileMenuItem_Click;
menuItems.Add(fileMenuItem);
-
// File Menu Item
MenuItem titleSpecific = new MenuItem { Header = new TextBlock { Text = "Title Specific Scan", Margin = new Thickness(8, 0, 0, 0), VerticalAlignment = VerticalAlignment.Center } };
@@ -1286,16 +1282,6 @@ namespace HandBrakeWPF.ViewModels
this.SelectedPreset = e.NewValue as Preset;
}
- /// <summary>
- /// Show Release Notes
- /// </summary>
- public void ShowReleaseNotes()
- {
- string path =
- Path.GetDirectoryName(Process.GetCurrentProcess().MainModule.FileName);
- Process.Start(path + "\\releasenotes.html");
- }
-
#endregion
#region Private Methods