From 19bb083030c5281a049a03442502716766ad2a3f Mon Sep 17 00:00:00 2001 From: daboe01 Date: Sun, 4 Mar 2018 18:40:33 +0100 Subject: [PATCH] fixed: +proposedFileURLWithDocumentName: was missing --- AppKit/CPSavePanel.j | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AppKit/CPSavePanel.j b/AppKit/CPSavePanel.j index 3aa5994c8..7ee56bd59 100644 --- a/AppKit/CPSavePanel.j +++ b/AppKit/CPSavePanel.j @@ -35,6 +35,11 @@ CPArray _allowedFileTypes @accessors(property=allowedFileTypes); } ++ (CPURL)proposedFileURLWithDocumentName:(CPString)aDocumentName +{ + return [CPURL URLWithString:aDocumentName]; +} + + (id)savePanel { return [[CPSavePanel alloc] init];