Quick fix for issue with initialization of NSPDFImageRep. Change arrayWithObjects to arrayWithObject. It was causing a SIGSEGV.

This commit is contained in:
Gregory John Casamento 2020-06-08 04:00:32 -04:00
parent d9134d657f
commit 4c6548511f

View file

@ -43,7 +43,7 @@
+ (NSArray *) imagePasteboardTypes
{
return [NSArray arrayWithObjects: NSPDFPboardType];
return [NSArray arrayWithObject: NSPDFPboardType];
}
+ (NSArray *) imageUnfilteredPasteboardTYpes