diff options
| author | Luke <luke.pulverenti@gmail.com> | 2014-11-22 11:59:44 -0500 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2014-11-22 11:59:44 -0500 |
| commit | 0858c69d089d728cfeadef28cf6ad5fb14e32256 (patch) | |
| tree | d66f798494bfe19bdaac1864a3639727c15e5793 /MediaBrowser.Server.Mac/MainWindowController.cs | |
| parent | 66a9ef20e9538e6abe24d0867e5d228d9cfd3fba (diff) | |
removed dead code
Diffstat (limited to 'MediaBrowser.Server.Mac/MainWindowController.cs')
| -rw-r--r-- | MediaBrowser.Server.Mac/MainWindowController.cs | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/MediaBrowser.Server.Mac/MainWindowController.cs b/MediaBrowser.Server.Mac/MainWindowController.cs deleted file mode 100644 index 46a73b282..000000000 --- a/MediaBrowser.Server.Mac/MainWindowController.cs +++ /dev/null @@ -1,48 +0,0 @@ - -using System; -using System.Collections.Generic; -using System.Linq; -using MonoMac.Foundation; -using MonoMac.AppKit; - -namespace MediaBrowser.Server.Mac -{ - public partial class MainWindowController : MonoMac.AppKit.NSWindowController - { - #region Constructors - - // Called when created from unmanaged code - public MainWindowController (IntPtr handle) : base (handle) - { - Initialize (); - } - - // Called when created directly from a XIB file - [Export ("initWithCoder:")] - public MainWindowController (NSCoder coder) : base (coder) - { - Initialize (); - } - - // Call to load from the XIB/NIB file - public MainWindowController () : base ("MainWindow") - { - Initialize (); - } - - // Shared initialization code - void Initialize () - { - } - - #endregion - - //strongly typed window accessor - public new MainWindow Window { - get { - return (MainWindow)base.Window; - } - } - } -} - |
