[AppKit] Fix NSWindow.WindowController's return type in .NET. (#13624)

NSWindow.WindowController's type is supposed to be 'NSWindowController', not
'NSObject'. Fix this in .NET, since it's a breaking change.

Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=40095.
This commit is contained in:
Rolf Bjarne Kvinge 2021-12-22 17:52:54 +01:00 коммит произвёл GitHub
Родитель aacfb87a5f
Коммит 156ddead7b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -20712,7 +20712,11 @@ namespace AppKit {
[Export ("windowController")]
[NullAllowed]
#if NET
NSWindowController WindowController { get; set; }
#else
NSObject WindowController { get; set; }
#endif
[Export ("isSheet")]
bool IsSheet { get; }