diff options
| author | Luke <luke.pulverenti@gmail.com> | 2015-06-07 15:13:12 -0400 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2015-06-07 15:13:12 -0400 |
| commit | 384a59abef6061cd6442c47c51d9b48c6c1b124b (patch) | |
| tree | a5551e7ce1c78dbbb5c2c7bfd1faa60652e1f6cb /MediaBrowser.Server.Mac/Native | |
| parent | 38499de17a413095dff4cf846f069d8b8ae8d16e (diff) | |
update mac project
Diffstat (limited to 'MediaBrowser.Server.Mac/Native')
| -rw-r--r-- | MediaBrowser.Server.Mac/Native/BaseMonoApp.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Server.Mac/Native/NativeApp.cs | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Mac/Native/BaseMonoApp.cs b/MediaBrowser.Server.Mac/Native/BaseMonoApp.cs index 57610dfc2c..da4675b5e7 100644 --- a/MediaBrowser.Server.Mac/Native/BaseMonoApp.cs +++ b/MediaBrowser.Server.Mac/Native/BaseMonoApp.cs @@ -19,7 +19,7 @@ namespace MediaBrowser.Server.Mac /// <summary> /// Restarts this instance. /// </summary> - public virtual void Restart() + public virtual void Restart(StartupOptions options) { throw new NotImplementedException(); } diff --git a/MediaBrowser.Server.Mac/Native/NativeApp.cs b/MediaBrowser.Server.Mac/Native/NativeApp.cs index 4515be0517..005fb09148 100644 --- a/MediaBrowser.Server.Mac/Native/NativeApp.cs +++ b/MediaBrowser.Server.Mac/Native/NativeApp.cs @@ -1,4 +1,5 @@ using System; +using MediaBrowser.Server.Startup.Common; namespace MediaBrowser.Server.Mac { @@ -30,7 +31,7 @@ namespace MediaBrowser.Server.Mac /// <summary> /// Restarts this instance. /// </summary> - public override void Restart() + public override void Restart(StartupOptions options) { MainClass.Restart(); } |
