Changeset 675
- Timestamp:
- 01/20/10 09:18:40 (8 months ago)
- Location:
- apps/iphone/my.tel/trunk/Classes
- Files:
-
- 2 modified
-
MytelAppDelegate.m (modified) (1 diff)
-
RootViewController.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
apps/iphone/my.tel/trunk/Classes/MytelAppDelegate.m
r612 r675 52 52 // Re-login to make sure the session is ok 53 53 // Nothing will happen if no account is set up 54 [self.rootController loginTo CurrentAccount];54 [self.rootController loginToAccountAtIndex:self.rootController.currentAccountIndex forced:YES]; 55 55 } 56 56 -
apps/iphone/my.tel/trunk/Classes/RootViewController.m
r671 r675 178 178 selector:@selector(postLoginProcess:)]; 179 179 } else { 180 // we aren't forcing login, and we're in the current account 181 [self displayControllerForAccountAtIndex:self.currentAccountIndex]; 180 // we aren't forcing login, and we're in the current account, and there's no account visible 181 if (self.navigationController.topViewController == self) { 182 [self displayControllerForAccountAtIndex:self.currentAccountIndex]; 183 } 182 184 } 183 185








