Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
remove NotImplementedExceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
whitneyschmidt committed Dec 13, 2019
1 parent f48160e commit a2abad0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions MacWindows/MacWindows/MasterWindowController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@ public override void WindowDidLoad ()
[Export ("windowDidResize:")]
public void DidResize (NSNotification notification)
{
throw new System.NotImplementedException ();
// Do something as the window is being live resized
}

[Export ("windowDidEndLiveResize:")]
public void DidEndLiveResize (NSNotification notification)
{
throw new System.NotImplementedException ();
// Do something after the user's finished resizing
// the window
}
}
}

0 comments on commit a2abad0

Please sign in to comment.