瀏覽代碼

clouds: cosmetics

Felix Paul Kühne 9 年之前
父節點
當前提交
ef5bfca197

+ 2 - 2
Sources/VLCBoxTableViewController.m

@@ -203,7 +203,7 @@
 
 - (void)boxDidGetLoggedOut
 {
-    [self _showLoginPanel];
+    [self showLoginPanel];
 }
 
 - (void)boxAPIAuthenticationDidFail
@@ -213,7 +213,7 @@
 
 - (void)boxAPIInitiateLogin
 {
-    [self _showLoginPanel];
+    [self showLoginPanel];
 }
 
 - (void)authorizationViewControllerDidCancel:(BoxAuthorizationViewController *)authorizationViewController

+ 1 - 1
Sources/VLCCloudStorageTableViewController.h

@@ -30,7 +30,7 @@
 - (IBAction)loginAction:(id)sender;
 
 - (void)requestInformationForCurrentPath;
-- (void)_showLoginPanel;
+- (void)showLoginPanel;
 - (void)updateViewAfterSessionChange;
 - (void)goBack;
 

+ 2 - 2
Sources/VLCCloudStorageTableViewController.m

@@ -203,7 +203,7 @@
         [self.navigationController popViewControllerAnimated:YES];
 }
 
-- (void)_showLoginPanel
+- (void)showLoginPanel
 {
     self.loginToCloudStorageView.frame = self.tableView.frame;
     self.navigationItem.rightBarButtonItem = nil;
@@ -221,7 +221,7 @@
 
     if (![self.controller isAuthorized]) {
         [_activityIndicator stopAnimating];
-        [self _showLoginPanel];
+        [self showLoginPanel];
         return;
     }
 

+ 2 - 2
Sources/VLCGoogleDriveTableViewController.m

@@ -59,7 +59,7 @@
 
     if (maximumOffset - currentOffset <= - self.tableView.rowHeight) {
         if (_googleDriveController.hasMoreFiles && !self.activityIndicator.isAnimating) {
-            [self _requestInformationForCurrentPath];
+            [self requestInformationForCurrentPath];
         }
     }
 }
@@ -137,7 +137,7 @@
         if (![self.currentPath isEqualToString:@""])
             self.currentPath = [self.currentPath stringByAppendingString:@"/"];
         self.currentPath = [self.currentPath stringByAppendingString:_selectedFile.identifier];
-        [self _requestInformationForCurrentPath];
+        [self requestInformationForCurrentPath];
     }
 }