Skip to content

Commit 0aa56c3

Browse files
committed
Update TestWindowStyleViewController.m
1 parent c393c9f commit 0aa56c3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

LLDebugToolDemo/DemoViewControllers/TestWindowStyleViewController.m

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
5757

5858
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
5959
if (indexPath.row == 0) {
60-
[self testSuspensionBallWindowStyle];
60+
[self testBallWindowStyle];
6161
} else if (indexPath.row == 1) {
6262
[self testTitleWindowStyle];
6363
} else if (indexPath.row == 2) {
64-
[self testSuspensionLeadingWindowStyle];
64+
[self testLeadingWindowStyle];
6565
} else if (indexPath.row == 3) {
66-
[self testSuspensionTrailingWindowStyle];
66+
[self testTrailingWindowStyle];
6767
} else if (indexPath.row == 4) {
6868
[self testNetBarWindowStyle];
6969
} else if (indexPath.row == 5) {
@@ -73,19 +73,19 @@ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath
7373
}
7474

7575
#pragma mark - Actions
76-
- (void)testSuspensionBallWindowStyle {
76+
- (void)testBallWindowStyle {
7777
[LLConfig shared].entryWindowStyle = LLConfigEntryWindowStyleBall;
7878
}
7979

8080
- (void)testTitleWindowStyle {
8181
[LLConfig shared].entryWindowStyle = LLConfigEntryWindowStyleTitle;
8282
}
8383

84-
- (void)testSuspensionLeadingWindowStyle {
84+
- (void)testLeadingWindowStyle {
8585
[LLConfig shared].entryWindowStyle = LLConfigEntryWindowStyleLeading;
8686
}
8787

88-
- (void)testSuspensionTrailingWindowStyle {
88+
- (void)testTrailingWindowStyle {
8989
[LLConfig shared].entryWindowStyle = LLConfigEntryWindowStyleTrailing;
9090
}
9191

0 commit comments

Comments
 (0)