Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLC-iOS
Commits
edfbdd42
Commit
edfbdd42
authored
Jun 15, 2016
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing calls to super
(cherry picked from commit 04cba7242cd008f155107c3894ab72e6dfbdfc2e)
parent
bdc16b55
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
0 deletions
+9
-0
Sources/LocalNetworkConnectivity/VLCNetworkListCell.m
Sources/LocalNetworkConnectivity/VLCNetworkListCell.m
+4
-0
Sources/VLCPlaylistCollectionViewCell.m
Sources/VLCPlaylistCollectionViewCell.m
+1
-0
Sources/VLCSlider.m
Sources/VLCSlider.m
+2
-0
Sources/VLCTimeNavigationTitleView.m
Sources/VLCTimeNavigationTitleView.m
+2
-0
No files found.
Sources/LocalNetworkConnectivity/VLCNetworkListCell.m
View file @
edfbdd42
...
...
@@ -37,6 +37,7 @@
self
.
folderTitleLabel
.
highlightedTextColor
=
[
UIColor
blackColor
];
self
.
subtitleLabel
.
highlightedTextColor
=
[
UIColor
blackColor
];
self
.
statusLabel
.
highlightedTextColor
=
[
UIColor
blackColor
];
[
super
awakeFromNib
];
}
-
(
void
)
setTitleLabelCentered
:(
BOOL
)
titleLabelCentered
...
...
@@ -114,6 +115,9 @@
@implementation
VLCNetworkListCell
(
CellConfigurator
)
@dynamic
couldBeAudioOnlyMedia
;
-
(
void
)
setThumbnailImage
:(
UIImage
*
)
thumbnailImage
{
self
.
icon
=
thumbnailImage
;
}
...
...
Sources/VLCPlaylistCollectionViewCell.m
View file @
edfbdd42
...
...
@@ -38,6 +38,7 @@
_checkboxEmptyImage
=
[
UIImage
imageNamed
:
@"checkboxEmpty"
];
_checkboxImage
=
[
UIImage
imageNamed
:
@"checkbox"
];
self
.
metaDataLabel
.
hidden
=
YES
;
[
super
awakeFromNib
];
}
-
(
void
)
setEditing
:(
BOOL
)
editing
animated
:(
BOOL
)
animated
...
...
Sources/VLCSlider.m
View file @
edfbdd42
...
...
@@ -19,6 +19,7 @@
self
.
accessibilityLabel
=
NSLocalizedString
(
@"PLAYBACK_POSITION"
,
nil
);
self
.
isAccessibilityElement
=
YES
;
[
self
setThumbImage
:[
UIImage
imageNamed
:
@"sliderKnob"
]
forState
:
UIControlStateNormal
];
[
super
awakeFromNib
];
}
@end
...
...
@@ -37,6 +38,7 @@
-
(
void
)
awakeFromNib
{
[
self
setThumbImage
:[
UIImage
imageNamed
:
@"sliderKnob"
]
forState
:
UIControlStateNormal
];
[
super
awakeFromNib
];
}
@end
...
...
Sources/VLCTimeNavigationTitleView.m
View file @
edfbdd42
...
...
@@ -40,6 +40,8 @@
}
[
self
setNeedsLayout
];
[
super
awakeFromNib
];
}
-
(
void
)
layoutSubviews
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment