mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-10 14:35:42 +00:00
Fix spelling: accessibility.
This commit is contained in:
parent
eddcc9a01d
commit
fc59abd1cb
@ -37,7 +37,7 @@
|
|||||||
+ (NSString *) getPasswordForUsername: (NSString *) username andServiceName: (NSString *) serviceName error: (NSError **) error;
|
+ (NSString *) getPasswordForUsername: (NSString *) username andServiceName: (NSString *) serviceName error: (NSError **) error;
|
||||||
//uses the default kSecAttrAccessibleWhenUnlocked
|
//uses the default kSecAttrAccessibleWhenUnlocked
|
||||||
+ (BOOL) storeUsername: (NSString *) username andPassword: (NSString *) password forServiceName: (NSString *) serviceName updateExisting: (BOOL) updateExisting error: (NSError **) error;
|
+ (BOOL) storeUsername: (NSString *) username andPassword: (NSString *) password forServiceName: (NSString *) serviceName updateExisting: (BOOL) updateExisting error: (NSError **) error;
|
||||||
+ (BOOL) storeUsername: (NSString *) username andPassword: (NSString *) password forServiceName: (NSString *) serviceName updateExisting: (BOOL) updateExisting accessibility:(CFTypeRef) accessiblity error: (NSError **) error;
|
+ (BOOL) storeUsername: (NSString *) username andPassword: (NSString *) password forServiceName: (NSString *) serviceName updateExisting: (BOOL) updateExisting accessibility:(CFTypeRef) accessibility error: (NSError **) error;
|
||||||
+ (BOOL) deleteItemForUsername: (NSString *) username andServiceName: (NSString *) serviceName error: (NSError **) error;
|
+ (BOOL) deleteItemForUsername: (NSString *) username andServiceName: (NSString *) serviceName error: (NSError **) error;
|
||||||
+ (BOOL) purgeItemsForServiceName:(NSString *) serviceName error: (NSError **) error;
|
+ (BOOL) purgeItemsForServiceName:(NSString *) serviceName error: (NSError **) error;
|
||||||
|
|
||||||
|
@ -126,7 +126,7 @@ static NSString *BITKeychainUtilsErrorDomain = @"BITKeychainUtilsErrorDomain";
|
|||||||
return [self storeUsername:username andPassword:password forServiceName:serviceName updateExisting:updateExisting accessibility:kSecAttrAccessibleWhenUnlocked error:error];
|
return [self storeUsername:username andPassword:password forServiceName:serviceName updateExisting:updateExisting accessibility:kSecAttrAccessibleWhenUnlocked error:error];
|
||||||
}
|
}
|
||||||
|
|
||||||
+ (BOOL) storeUsername: (NSString *) username andPassword: (NSString *) password forServiceName: (NSString *) serviceName updateExisting: (BOOL) updateExisting accessibility:(CFTypeRef) accessiblity error: (NSError **) error
|
+ (BOOL) storeUsername: (NSString *) username andPassword: (NSString *) password forServiceName: (NSString *) serviceName updateExisting: (BOOL) updateExisting accessibility:(CFTypeRef) accessibility error: (NSError **) error
|
||||||
{
|
{
|
||||||
if (!username || !password || !serviceName)
|
if (!username || !password || !serviceName)
|
||||||
{
|
{
|
||||||
@ -195,7 +195,7 @@ static NSString *BITKeychainUtilsErrorDomain = @"BITKeychainUtilsErrorDomain";
|
|||||||
serviceName,
|
serviceName,
|
||||||
serviceName,
|
serviceName,
|
||||||
username,
|
username,
|
||||||
accessiblity,
|
accessibility,
|
||||||
nil];
|
nil];
|
||||||
|
|
||||||
NSDictionary *query = [[NSDictionary alloc] initWithObjects: objects forKeys: keys];
|
NSDictionary *query = [[NSDictionary alloc] initWithObjects: objects forKeys: keys];
|
||||||
@ -221,7 +221,7 @@ static NSString *BITKeychainUtilsErrorDomain = @"BITKeychainUtilsErrorDomain";
|
|||||||
serviceName,
|
serviceName,
|
||||||
username,
|
username,
|
||||||
[password dataUsingEncoding: NSUTF8StringEncoding],
|
[password dataUsingEncoding: NSUTF8StringEncoding],
|
||||||
accessiblity,
|
accessibility,
|
||||||
nil];
|
nil];
|
||||||
|
|
||||||
NSDictionary *query = [[NSDictionary alloc] initWithObjects: objects forKeys: keys];
|
NSDictionary *query = [[NSDictionary alloc] initWithObjects: objects forKeys: keys];
|
||||||
|
@ -111,7 +111,7 @@ body { font: 13px 'Helvetica Neue', Helvetica; color:#626262; word-wrap:break-wo
|
|||||||
if (_webViewContent != aWebViewContent) {
|
if (_webViewContent != aWebViewContent) {
|
||||||
_webViewContent = aWebViewContent;
|
_webViewContent = aWebViewContent;
|
||||||
|
|
||||||
// add basic accessiblity (prevents "snarfed from ivar layout") logs
|
// add basic accessibility (prevents "snarfed from ivar layout") logs
|
||||||
self.accessibilityLabel = aWebViewContent;
|
self.accessibilityLabel = aWebViewContent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user