~threeve/ubuntuone-ios-music/fix-play-on-call

« back to all changes in this revision

Viewing changes to musicstreaming/Other Sources/iSubAppDelegate.m

  • Committer: Jason Foreman
  • Date: 2011-06-16 18:33:42 UTC
  • mfrom: (191.1.60 master)
  • Revision ID: jason.foreman@canonical.com-20110616183342-vl7a4804xsf0s1b5
Merging branches for v 2.0.

lp:~threeve/ubuntuone-ios-client/master
lp:~urbanape/ubuntuone-ios-client/downloader

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
 
50
50
@synthesize window;
51
51
@synthesize tabBarController;
52
 
@synthesize coverArtCache;
53
52
 
54
53
#pragma mark -
55
54
#pragma mark Application lifecycle
66
65
        }
67
66
    }
68
67
        
69
 
    coverArtCache = [[NSMutableDictionary alloc] init];
70
 
 
71
68
    [self configureUsernamePassword];
72
69
 
73
70
    [self recoverState];
87
84
        if ([[url scheme] isEqual:@"x-ubuntuone-music"])
88
85
        {
89
86
                [self parseQueryCredentials:url];
90
 
                [[NSNotificationCenter defaultCenter] postNotificationName:@"ReloadAccountCredentials" object:nil];
 
87
                [[NSNotificationCenter defaultCenter] postNotificationName:NOTIF_reloadAccountCredentials object:nil];
91
88
 
92
89
                return YES;
93
90
        }
164
161
 
165
162
- (void)dealloc
166
163
{
167
 
    [coverArtCache release];
168
 
 
169
164
    [tabBarController release];
170
165
 
171
166
    [window release];