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:
Diffstat (limited to 'BookmarkPopoverController.cs')
-rw-r--r--BookmarkPopoverController.cs14
1 files changed, 4 insertions, 10 deletions
diff --git a/BookmarkPopoverController.cs b/BookmarkPopoverController.cs
index 2373c55..cb2c34b 100644
--- a/BookmarkPopoverController.cs
+++ b/BookmarkPopoverController.cs
@@ -1,12 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
-using MonoMac.Foundation;
-using MonoMac.AppKit;
+using Foundation;
+using AppKit;
namespace macdoc
{
- public partial class BookmarkPopoverController : MonoMac.AppKit.NSViewController
+ public partial class BookmarkPopoverController : AppKit.NSViewController
{
NSPopover parentPopover;
BookmarkManager.Entry entry;
@@ -15,13 +15,7 @@ namespace macdoc
{
Initialize ();
}
-
- [Export ("initWithCoder:")]
- public BookmarkPopoverController (NSCoder coder) : base (coder)
- {
- Initialize ();
- }
-
+
public BookmarkPopoverController (NSPopover popover, BookmarkManager.Entry entry) : base ("BookmarkPopover", NSBundle.MainBundle)
{
this.parentPopover = popover;