mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-01 01:01:21 +00:00
Quick fix for issue with initialization of NSPDFImageRep. Change arrayWithObjects to arrayWithObject. It was causing a SIGSEGV.
This commit is contained in:
parent
d9134d657f
commit
4c6548511f
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@
|
||||||
|
|
||||||
+ (NSArray *) imagePasteboardTypes
|
+ (NSArray *) imagePasteboardTypes
|
||||||
{
|
{
|
||||||
return [NSArray arrayWithObjects: NSPDFPboardType];
|
return [NSArray arrayWithObject: NSPDFPboardType];
|
||||||
}
|
}
|
||||||
|
|
||||||
+ (NSArray *) imageUnfilteredPasteboardTYpes
|
+ (NSArray *) imageUnfilteredPasteboardTYpes
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue