diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-02-25 13:22:33 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-25 13:22:33 -0800 |
commit | a635c30564ecaccbbaf3420025419d9c6080d4bd (patch) | |
tree | 233f3f418c7f858ced833b77c42b4d7f284ac41a /macos.c | |
parent | fadf2f4432853d5281696876b49936f3ba723cd3 (diff) | |
download | subsurface-a635c30564ecaccbbaf3420025419d9c6080d4bd.tar.gz |
Work around yet another Gtk bug: gtk_show_uri doesn't work on Mac
Instead use the native function to open the URL.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'macos.c')
-rw-r--r-- | macos.c | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -4,6 +4,7 @@ #include "dive.h" #include "display-gtk.h" #include <CoreFoundation/CoreFoundation.h> +#include <LaunchServices/LSOpen.h> #include <mach-o/dyld.h> #include "gtkosxapplication.h" @@ -228,12 +229,9 @@ gboolean subsurface_os_feature_available(os_feature_t f) gboolean subsurface_launch_for_uri(const char* uri) { - GError *err = NULL; - gtk_show_uri(NULL, uri, gtk_get_current_event_time(), &err); - if (err) { - g_message("%s: %s", err->message, uri); - g_error_free(err); + CFURLRef urlref = CFURLCreateWithBytes(NULL, uri, strlen(uri), kCFStringEncodingMacRoman, NULL); + OSStatus status = LSOpenCFURLRef(urlref, NULL); + if (status) return FALSE; - } return TRUE; } |