Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-iOS
Commits
ae4ee5d5
Commit
ae4ee5d5
authored
Apr 07, 2013
by
Felix Paul Kühne
Browse files
Coding style fixes
parent
c4861164
Changes
4
Hide whitespace changes
Inline
Side-by-side
AspenProject/VLCAboutViewController.m
View file @
ae4ee5d5
...
...
@@ -18,9 +18,6 @@
-
(
id
)
initWithNibName
:(
NSString
*
)
nibNameOrNil
bundle
:(
NSBundle
*
)
nibBundleOrNil
{
self
=
[
super
initWithNibName
:
nibNameOrNil
bundle
:
nibBundleOrNil
];
if
(
self
)
{
self
.
title
=
@""
;
}
return
self
;
}
...
...
AspenProject/VLCExternalDisplayController.m
View file @
ae4ee5d5
...
...
@@ -14,15 +14,18 @@
@implementation
VLCExternalDisplayController
-
(
BOOL
)
shouldAutorotateToInterfaceOrientation
:(
UIInterfaceOrientation
)
toInterfaceOrientation
{
-
(
BOOL
)
shouldAutorotateToInterfaceOrientation
:(
UIInterfaceOrientation
)
toInterfaceOrientation
{
return
NO
;
}
-
(
BOOL
)
shouldAutorotate
{
-
(
BOOL
)
shouldAutorotate
{
return
NO
;
}
-
(
NSUInteger
)
supportedInterfaceOrientations
{
-
(
NSUInteger
)
supportedInterfaceOrientations
{
return
~
UIInterfaceOrientationMaskAll
;
}
...
...
AspenProject/VLCMovieViewController.m
View file @
ae4ee5d5
...
...
@@ -124,9 +124,8 @@
-
(
BOOL
)
gestureRecognizer
:(
UIGestureRecognizer
*
)
gestureRecognizer
shouldReceiveTouch
:(
UITouch
*
)
touch
{
if
(
touch
.
view
!=
self
.
view
)
{
if
(
touch
.
view
!=
self
.
view
)
return
NO
;
}
return
YES
;
}
...
...
AspenProject/VLCPlaylistViewController.m
View file @
ae4ee5d5
...
...
@@ -90,9 +90,8 @@
static
NSString
*
CellIdentifier
=
@"Cell"
;
VLCPlaylistTableViewCell
*
cell
=
(
VLCPlaylistTableViewCell
*
)[
tableView
dequeueReusableCellWithIdentifier
:
CellIdentifier
];
if
(
cell
==
nil
)
{
if
(
cell
==
nil
)
cell
=
[
VLCPlaylistTableViewCell
cellWithReuseIdentifier
:
CellIdentifier
];
}
MLFile
*
object
=
_foundMedia
[
indexPath
.
row
];
cell
.
titleLabel
.
text
=
object
.
title
;
...
...
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