[vlc-commits] macosx: use https instead of http for links opened from within the application
Felix Paul Kühne
git at videolan.org
Mon Apr 29 19:26:38 CEST 2019
vlc | branch: master | Felix Paul Kühne <felix at feepk.net> | Fri Apr 19 13:04:32 2019 +0200| [9da6cedb6e69b77b617515f9bdcae6967bd825cf] | committer: Felix Paul Kühne
macosx: use https instead of http for links opened from within the application
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9da6cedb6e69b77b617515f9bdcae6967bd825cf
---
modules/gui/macosx/menus/VLCMainMenu.m | 8 ++++----
modules/gui/macosx/windows/VLCHelpWindowController.m | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/modules/gui/macosx/menus/VLCMainMenu.m b/modules/gui/macosx/menus/VLCMainMenu.m
index 8f0bafcc42..0614248d7d 100644
--- a/modules/gui/macosx/menus/VLCMainMenu.m
+++ b/modules/gui/macosx/menus/VLCMainMenu.m
@@ -1430,28 +1430,28 @@ typedef NS_ENUM(NSInteger, VLCObjectType) {
- (IBAction)openDocumentation:(id)sender
{
- NSURL *url = [NSURL URLWithString: @"http://www.videolan.org/doc/"];
+ NSURL *url = [NSURL URLWithString: @"https://www.videolan.org/doc/"];
[[NSWorkspace sharedWorkspace] openURL: url];
}
- (IBAction)openWebsite:(id)sender
{
- NSURL *url = [NSURL URLWithString: @"http://www.videolan.org/"];
+ NSURL *url = [NSURL URLWithString: @"https://www.videolan.org/"];
[[NSWorkspace sharedWorkspace] openURL: url];
}
- (IBAction)openForum:(id)sender
{
- NSURL *url = [NSURL URLWithString: @"http://forum.videolan.org/"];
+ NSURL *url = [NSURL URLWithString: @"https://forum.videolan.org/"];
[[NSWorkspace sharedWorkspace] openURL: url];
}
- (IBAction)openDonate:(id)sender
{
- NSURL *url = [NSURL URLWithString: @"http://www.videolan.org/contribute.html#paypal"];
+ NSURL *url = [NSURL URLWithString: @"https://www.videolan.org/contribute.html#paypal"];
[[NSWorkspace sharedWorkspace] openURL: url];
}
diff --git a/modules/gui/macosx/windows/VLCHelpWindowController.m b/modules/gui/macosx/windows/VLCHelpWindowController.m
index 437107e402..fecf66d322 100644
--- a/modules/gui/macosx/windows/VLCHelpWindowController.m
+++ b/modules/gui/macosx/windows/VLCHelpWindowController.m
@@ -63,7 +63,7 @@
_NS(I_LONGHELP)];
[[helpWebView mainFrame] loadHTMLString:htmlWithStyle
- baseURL:[NSURL URLWithString:@"http://videolan.org"]];
+ baseURL:[NSURL URLWithString:@"https://videolan.org"]];
}
- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
More information about the vlc-commits
mailing list