Rename MatrixSDKHandler with MatrixHandler.

This commit is contained in:
giomfo
2015-04-17 18:58:53 +02:00
parent caede2d318
commit d1d051d208
22 changed files with 87 additions and 96 deletions
@@ -15,7 +15,7 @@
*/
#import "MasterTabBarController.h"
#import "MatrixSDKHandler.h"
#import "MatrixHandler.h"
#import "HomeViewController.h"
@@ -108,7 +108,7 @@
[super viewDidAppear:animated];
// Check whether we're not logged in
if (![MatrixSDKHandler sharedHandler].accessToken) {
if (![MatrixHandler sharedHandler].accessToken) {
[self showAuthenticationScreen];
}
}
@@ -215,7 +215,7 @@
}
- (void)setVisibleRoomId:(NSString *)aVisibleRoomId {
[[MatrixSDKHandler sharedHandler] restoreInAppNotificationsForRoomId:aVisibleRoomId];
[[MatrixHandler sharedHandler] restoreInAppNotificationsForRoomId:aVisibleRoomId];
_visibleRoomId = aVisibleRoomId;
}