Skip to content

Commit 16568c4

Browse files
committed
fixup: make compilable
1 parent ba85a35 commit 16568c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

XBMC Remote/RightMenuViewController.m

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

@@ -205,11 +205,11 @@ - (void)loadCustomButtons {
205205
customButton *arrayButtons = [customButton new];
206206
if (arrayButtons.buttons.count == 0) {
207207
editTableButton.enabled = NO;
208-
[Utilities alphaView:noFoundLabel AnimDuration:0.2 Alpha:1.0];
208+
[noFoundLabel animateAlpha:1.0 duration:0.2];
209209
}
210210
else {
211211
editTableButton.enabled = YES;
212-
[Utilities alphaView:noFoundLabel AnimDuration:0.2 Alpha:0.0];
212+
[noFoundLabel animateAlpha:0.0 duration:0.2];
213213
}
214214

215215
// Build table with custom buttons

0 commit comments

Comments
 (0)