Skip to content

Commit 134ad2b

Browse files
committed
Method renaming
1 parent 82e6244 commit 134ad2b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

LTHPasscodeViewController/LTHPasscodeViewController.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@
319319
@param hasLogout Set to @c YES for a navBar with a Logout button, set to @c NO for no navBar.
320320
@param logoutTitle The title of the Logout button.
321321
*/
322-
- (void)showLockScreenIntoSuperview:(UIView *)superview withAnimation:(BOOL)animated withLogout:(BOOL)hasLogout andLogoutTitle:(NSString*)logoutTitle;
322+
- (void)showLockScreenOver:(UIView *)superview withAnimation:(BOOL)animated withLogout:(BOOL)hasLogout andLogoutTitle:(NSString*)logoutTitle;
323323
/**
324324
@brief Used for enabling the passcode.
325325
@details The back bar button is hidden by default. Set @c hidesBackButton to @c NO if you want it to be visible.

LTHPasscodeViewController/LTHPasscodeViewController.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,10 +1010,10 @@ - (void)showLockscreenWithoutAnimation {
10101010
}
10111011

10121012
- (void)showLockScreenWithAnimation:(BOOL)animated withLogout:(BOOL)hasLogout andLogoutTitle:(NSString*)logoutTitle {
1013-
[self showLockScreenIntoSuperview:LTHMainWindow withAnimation:animated withLogout:hasLogout andLogoutTitle:logoutTitle];
1013+
[self showLockScreenOver:LTHMainWindow withAnimation:animated withLogout:hasLogout andLogoutTitle:logoutTitle];
10141014
}
10151015

1016-
- (void)showLockScreenIntoSuperview:(UIView *)superview withAnimation:(BOOL)animated withLogout:(BOOL)hasLogout andLogoutTitle:(NSString*)logoutTitle {
1016+
- (void)showLockScreenOver:(UIView *)superview withAnimation:(BOOL)animated withLogout:(BOOL)hasLogout andLogoutTitle:(NSString*)logoutTitle {
10171017
[self _prepareAsLockScreen];
10181018

10191019
// In case the user leaves the app while the lockscreen is already active.

0 commit comments

Comments
 (0)