Skip to content

Commit cd9e5c9

Browse files
committed
fixup: make compilable
1 parent cb4bf40 commit cd9e5c9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

XBMC Remote/HostManagementViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ - (void)tableView:(UITableView*)tableView commitEditingStyle:(UITableViewCellEdi
273273
// Are there still editable entries?
274274
if (AppDelegate.instance.arrayServerList.count == 0) {
275275
editTableButton.selected = editTableButton.enabled = NO;
276-
[Utilities alphaView:noFoundLabel AnimDuration:0.2 Alpha:1.0];
276+
[noFoundLabel animateAlpha:1.0 duration:0.2];
277277
}
278278
}
279279
}

XBMC Remote/NowPlaying.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2347,7 +2347,7 @@ - (void)tableView:(UITableView*)tableView commitEditingStyle:(UITableViewCellEdi
23472347
// Are there still editable entries?
23482348
if (playlistData.count == 0) {
23492349
editTableButton.selected = editTableButton.enabled = NO;
2350-
[Utilities alphaView:noFoundLabel AnimDuration:0.2 Alpha:1.0];
2350+
[noFoundLabel animateAlpha:1.0 duration:0.2];
23512351
}
23522352
}];
23532353
}

XBMC Remote/RightMenuViewController.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ - (void)deleteCustomButton:(NSUInteger)idx {
197197
if (arrayButtons.buttons.count == 0) {
198198
editTableButton.enabled = NO;
199199
editTableButton.selected = NO;
200-
[Utilities alphaView:noFoundLabel AnimDuration:0.2 Alpha:1.0];
200+
[noFoundLabel animateAlpha:1.0 duration:0.2];
201201
}
202202
}
203203

@@ -206,11 +206,11 @@ - (void)loadCustomButtons {
206206
customButton *arrayButtons = [customButton new];
207207
if (arrayButtons.buttons.count == 0) {
208208
editTableButton.enabled = NO;
209-
[Utilities alphaView:noFoundLabel AnimDuration:0.2 Alpha:1.0];
209+
[noFoundLabel animateAlpha:1.0 duration:0.2];
210210
}
211211
else {
212212
editTableButton.enabled = YES;
213-
[Utilities alphaView:noFoundLabel AnimDuration:0.2 Alpha:0.0];
213+
[noFoundLabel animateAlpha:0.0 duration:0.2];
214214
}
215215

216216
// Build table with custom buttons

0 commit comments

Comments
 (0)