Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC-iOS
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
311
Issues
311
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
VLC-iOS
Commits
26af6226
Commit
26af6226
authored
Dec 02, 2013
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
App Delegate: fix VLCCloudStorageTableViewController vc initialization
parent
46f16c67
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
4 deletions
+2
-4
Sources/VLCAppDelegate.m
Sources/VLCAppDelegate.m
+2
-2
Sources/VLCDropboxTableViewController.m
Sources/VLCDropboxTableViewController.m
+0
-1
Sources/VLCGoogleDriveTableViewController.m
Sources/VLCGoogleDriveTableViewController.m
+0
-1
No files found.
Sources/VLCAppDelegate.m
View file @
26af6226
...
...
@@ -178,7 +178,7 @@
-
(
VLCDropboxTableViewController
*
)
dropboxTableViewController
{
if
(
_dropboxTableViewController
==
nil
)
_dropboxTableViewController
=
[[
VLCDropboxTableViewController
alloc
]
initWithNibName
:
nil
bundle
:
nil
];
_dropboxTableViewController
=
[[
VLCDropboxTableViewController
alloc
]
initWithNibName
:
@"VLCCloudStorageTableViewController"
bundle
:
nil
];
return
_dropboxTableViewController
;
}
...
...
@@ -186,7 +186,7 @@
-
(
VLCGoogleDriveTableViewController
*
)
googleDriveTableViewController
{
if
(
_googleDriveTableViewController
==
nil
)
_googleDriveTableViewController
=
[[
VLCGoogleDriveTableViewController
alloc
]
initWithNibName
:
nil
bundle
:
nil
];
_googleDriveTableViewController
=
[[
VLCGoogleDriveTableViewController
alloc
]
initWithNibName
:
@"VLCCloudStorageTableViewController"
bundle
:
nil
];
return
_googleDriveTableViewController
;
}
...
...
Sources/VLCDropboxTableViewController.m
View file @
26af6226
...
...
@@ -47,7 +47,6 @@
-
(
void
)
viewDidLoad
{
[
super
viewDidLoad
];
[[
NSBundle
mainBundle
]
loadNibNamed
:
@"VLCCloudStorageTableViewController"
owner
:
self
options
:
nil
];
self
.
modalPresentationStyle
=
UIModalPresentationFormSheet
;
_dropboxController
=
[[
VLCDropboxController
alloc
]
init
];
...
...
Sources/VLCGoogleDriveTableViewController.m
View file @
26af6226
...
...
@@ -47,7 +47,6 @@
-
(
void
)
viewDidLoad
{
[
super
viewDidLoad
];
[[
NSBundle
mainBundle
]
loadNibNamed
:
@"VLCCloudStorageTableViewController"
owner
:
self
options
:
nil
];
self
.
modalPresentationStyle
=
UIModalPresentationFormSheet
;
_googleDriveController
=
[
VLCGoogleDriveController
sharedInstance
];
...
...
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