Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[QuickLook] Update based on quicklookui feedback #12402

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/quicklook.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ interface QLPreviewItem {
interface QLPreviewReply
{
[Export ("stringEncoding")]
nuint StringEncoding { get; set; }
NSStringEncoding StringEncoding { get; set; }

[Export ("attachments", ArgumentSemantic.Copy)]
NSDictionary<NSString, QLPreviewReplyAttachment> Attachments { get; set; }
Expand All @@ -204,6 +204,7 @@ interface QLPreviewReply

[NoWatch, NoTV, Mac (12,0), iOS (15,0), MacCatalyst (15,0)]
[BaseType (typeof(NSObject))]
[DisableDefaultCtor]
interface QLPreviewReplyAttachment
{
[Export ("data")]
Expand All @@ -218,6 +219,7 @@ interface QLPreviewReplyAttachment

[NoWatch, NoTV, Mac (12,0), iOS (15,0), MacCatalyst (15,0)]
[BaseType (typeof(NSObject))]
[DisableDefaultCtor]
interface QLFilePreviewRequest
{
[Export ("fileURL")]
Expand Down