mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Updated imports for NSUbiquitousKeyValueStore updates to NSUserActivity
This commit is contained in:
parent
018e19e9e3
commit
2ea339eef8
2 changed files with 9 additions and 15 deletions
|
@ -20,21 +20,21 @@
|
|||
License along with this library; if not, write to the Free
|
||||
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110 USA.
|
||||
|
||||
*/
|
||||
|
||||
#import "common.h"
|
||||
#import "Foundation/NSAutoreleasePool.h"
|
||||
#import "Foundation/NSCoder.h"
|
||||
#import "Foundation/NSEnumerator.h"
|
||||
#import "Foundation/NSException.h"
|
||||
#import "Foundation/NSKeyedArchiver.h"
|
||||
#import <Foundation/NSUbiquitousKeyValueStore.h>
|
||||
#import <Foundation/NSArray.h>
|
||||
#import <Foundation/NSDictionary.h>
|
||||
#import <Foundation/NSData.h>
|
||||
#import <Foundation/NSString.h>
|
||||
#import <Foundation/NSValue.h>
|
||||
#import <Foundation/NSUserDefaults.h>
|
||||
#import "Foundation/NSUbiquitousKeyValueStore.h"
|
||||
#import "Foundation/NSArray.h"
|
||||
#import "Foundation/NSDictionary.h"
|
||||
#import "Foundation/NSData.h"
|
||||
#import "Foundation/NSString.h"
|
||||
#import "Foundation/NSValue.h"
|
||||
#import "Foundation/NSUserDefaults.h"
|
||||
|
||||
static NSUbiquitousKeyValueStore *_sharedUbiquitousKeyValueStore = nil;
|
||||
|
||||
|
|
|
@ -50,13 +50,7 @@ static NSUserActivity *__currentUserActivity = nil;
|
|||
|
||||
- (instancetype) init
|
||||
{
|
||||
self = [super init];
|
||||
|
||||
if (self != nil)
|
||||
{
|
||||
_activityType = nil;
|
||||
}
|
||||
|
||||
self = [self initWithActivityType: nil];
|
||||
return self;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue