forked from organicmaps/organicmaps
[ios] Review fixes.
This commit is contained in:
parent
3b3676d7c4
commit
ff991e8bab
3 changed files with 3 additions and 4 deletions
|
@ -132,7 +132,7 @@ using namespace osm;
|
|||
if (Platform::IsConnected())
|
||||
{
|
||||
[self startSpinner];
|
||||
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^
|
||||
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^
|
||||
{
|
||||
string const username = self.loginTextField.text.UTF8String;
|
||||
string const password = self.passwordTextField.text.UTF8String;
|
||||
|
|
|
@ -68,7 +68,7 @@ NSString * getVerifier(NSString * urlString)
|
|||
- (void)loadAuthorizationPage
|
||||
{
|
||||
[self startSpinner];
|
||||
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^
|
||||
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^
|
||||
{
|
||||
// TODO(AlexZ): Change to production.
|
||||
OsmOAuth auth = OsmOAuth::IZServerAuth();
|
||||
|
@ -115,7 +115,7 @@ NSString * getVerifier(NSString * urlString)
|
|||
- (void)checkAuthorization:(NSString *)verifier
|
||||
{
|
||||
[self startSpinner];
|
||||
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^
|
||||
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^
|
||||
{
|
||||
TKeySecret outKeySecret;
|
||||
// TODO(AlexZ): Change to production.
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
<customFonts key="customFonts">
|
||||
<mutableArray key="HelveticaNeue.ttc">
|
||||
<string>HelveticaNeue-Medium</string>
|
||||
<string>HelveticaNeue-Medium</string>
|
||||
</mutableArray>
|
||||
</customFonts>
|
||||
<scenes>
|
||||
|
|
Loading…
Add table
Reference in a new issue