aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Mac/MainWindow.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Server.Mac/MainWindow.cs')
-rw-r--r--MediaBrowser.Server.Mac/MainWindow.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/MediaBrowser.Server.Mac/MainWindow.cs b/MediaBrowser.Server.Mac/MainWindow.cs
deleted file mode 100644
index c32ba36d7..000000000
--- a/MediaBrowser.Server.Mac/MainWindow.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using MonoMac.Foundation;
-using MonoMac.AppKit;
-
-namespace MediaBrowser.Server.Mac
-{
- public partial class MainWindow : MonoMac.AppKit.NSWindow
- {
- #region Constructors
-
- // Called when created from unmanaged code
- public MainWindow (IntPtr handle) : base (handle)
- {
- Initialize ();
- }
-
- // Called when created directly from a XIB file
- [Export ("initWithCoder:")]
- public MainWindow (NSCoder coder) : base (coder)
- {
- Initialize ();
- }
-
- // Shared initialization code
- void Initialize ()
- {
- }
-
- #endregion
- }
-}
-