mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Update MISSING file
This commit is contained in:
parent
9b144b7c13
commit
7a2e290d8c
2 changed files with 23 additions and 3 deletions
|
@ -30,7 +30,6 @@ Missing headers:
|
|||
<NSScriptObjectSpecifiers.h>
|
||||
<NSScriptStandardSuiteCommands.h>
|
||||
<NSScriptSuiteRegistry.h>>
|
||||
<NSUserNotification.h>
|
||||
<NSUserScriptTask.h>
|
||||
<NSXPCConnection.h>
|
||||
-------------------------------------------------------------
|
||||
|
|
|
@ -32,14 +32,35 @@
|
|||
#include <Foundation/NSURL.h>
|
||||
#include <Foundation/NSPersonNameComponents.h>
|
||||
|
||||
@interface NSFileVersion (Private)
|
||||
- (void) _setURL: (NSURL *)u;
|
||||
@end
|
||||
|
||||
@implementation NSFileVersion (Private)
|
||||
- (void) _setURL: (NSURL *)u
|
||||
{
|
||||
ASSIGNCOPY(_fileURL, u);
|
||||
}
|
||||
|
||||
- (void) _setContentsURL: (NSURL *)u
|
||||
{
|
||||
ASSIGNCOPY(_contentsURL, u);
|
||||
}
|
||||
@end
|
||||
|
||||
@implementation NSFileVersion
|
||||
|
||||
// Initializers
|
||||
+ (NSFileVersion *)currentVersionOfItemAtURL: (NSURL *)url
|
||||
{
|
||||
|
||||
return nil;
|
||||
NSFileVersion *fileVersion = AUTORELEASE([[NSFileVersion alloc] init]);
|
||||
if (fileVersion != nil)
|
||||
{
|
||||
[fileVersion setURL: url];
|
||||
[fileVersion setContentsURL: url];
|
||||
|
||||
}
|
||||
return fileVersion;
|
||||
}
|
||||
|
||||
+ (NSArray *)otherVersionsOfItemAtURL: (NSURL *)url
|
||||
|
|
Loading…
Reference in a new issue