summaryrefslogtreecommitdiff
path: root/cocoa/gui.m
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-01-14 12:46:01 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-01-14 12:46:01 +0000
commit633f294ce29be6b40c2c4cb865120d1771c81c67 (patch)
treea334ebc746c035b475e61814cb2e08efbc43c05a /cocoa/gui.m
parentdbaaa53f68ffa1e83a70483e5c42429f98af76e5 (diff)
downloadnetsurf-633f294ce29be6b40c2c4cb865120d1771c81c67.tar.gz
netsurf-633f294ce29be6b40c2c4cb865120d1771c81c67.tar.bz2
Opening URLs
svn path=/trunk/netsurf/; revision=11316
Diffstat (limited to 'cocoa/gui.m')
-rw-r--r--cocoa/gui.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/gui.m b/cocoa/gui.m
index 15b7ea46b..363961dc4 100644
--- a/cocoa/gui.m
+++ b/cocoa/gui.m
@@ -335,7 +335,7 @@ void gui_create_form_select_menu(struct browser_window *bw,
void gui_launch_url(const char *url)
{
- UNIMPL();
+ [[NSWorkspace sharedWorkspace] openURL: [NSURL URLWithString: [NSString stringWithUTF8String: url]]];
}