Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/macdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Hamons <chris.hamons@xamarin.com>2016-09-19 21:06:40 +0300
committerGitHub <noreply@github.com>2016-09-19 21:06:40 +0300
commitd5982dd35f4287823d91ef111a14662f6eaec780 (patch)
tree405936cc20456889683cdca3b6ec2dc8f914e214 /AppleDocMergeWindow.cs
parentea60f85a862962fcca96a66db7719c5552fbaa3a (diff)
Port to Unified XM 4.5 (#1)
Diffstat (limited to 'AppleDocMergeWindow.cs')
-rw-r--r--AppleDocMergeWindow.cs16
1 files changed, 4 insertions, 12 deletions
diff --git a/AppleDocMergeWindow.cs b/AppleDocMergeWindow.cs
index c4f4d95..1aea668 100644
--- a/AppleDocMergeWindow.cs
+++ b/AppleDocMergeWindow.cs
@@ -1,28 +1,20 @@
-
using System;
using System.Collections.Generic;
using System.Linq;
-using MonoMac.Foundation;
-using MonoMac.AppKit;
+using Foundation;
+using AppKit;
namespace macdoc
{
- public partial class AppleDocMergeWindow : MonoMac.AppKit.NSWindow
+ public partial class AppleDocMergeWindow : AppKit.NSWindow
{
public AppleDocMergeWindow (IntPtr handle) : base (handle)
{
Initialize ();
}
- [Export ("initWithCoder:")]
- public AppleDocMergeWindow (NSCoder coder) : base (coder)
- {
- Initialize ();
- }
-
void Initialize ()
{
}
}
-}
-
+} \ No newline at end of file