Use NSNumber instead of BOOL (bug#39047)
* src/nsfns.m (ns_set_represented_filename): Use correct type. Copyright-paperwork-exempt: yes
This commit is contained in:
parent
beec9f64a5
commit
5841240295
1 changed files with 2 additions and 2 deletions
|
@ -493,11 +493,11 @@ Turn the input menu (an NSMenu) into a lisp list for tracking on lisp side.
|
|||
#if defined (NS_IMPL_COCOA) && defined (MAC_OS_X_VERSION_10_7)
|
||||
/* Work around for Mach port leaks on macOS 10.15 (bug#38618). */
|
||||
NSURL *fileURL = [NSURL fileURLWithPath:fstr isDirectory:NO];
|
||||
BOOL isUbiquitousItem = YES;
|
||||
NSNumber *isUbiquitousItem = @YES;
|
||||
[fileURL getResourceValue:(id *)&isUbiquitousItem
|
||||
forKey:NSURLIsUbiquitousItemKey
|
||||
error:nil];
|
||||
if (isUbiquitousItem)
|
||||
if ([isUbiquitousItem boolValue])
|
||||
fstr = @"";
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue