X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=shell%2Fev-window.c;h=528226b3ba1325903312e01846626f76d289c85f;hb=5f554d8e362a35e05840068e1b3ea935be5d3c47;hp=23ac71ff8071f989fca0715fe9748d3dc2f5d365;hpb=00632264c5cb956ee6d66b00d14bbd4ad9f96efd;p=evince.git diff --git a/shell/ev-window.c b/shell/ev-window.c index 23ac71ff..528226b3 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -5420,6 +5420,7 @@ launch_action (EvWindow *window, EvLinkAction *action) g_object_unref (app_info); g_object_unref (file); + /* FIXMEchpe: unref launch context? */ /* According to the PDF spec filename can be an executable. I'm not sure allowing to launch executables is a good idea though. -- marco */ @@ -5445,10 +5446,10 @@ launch_external_uri (EvWindow *window, EvLinkAction *action) /* Not a valid uri, assuming it's http */ http = g_strdup_printf ("http://%s", uri); - ret = g_app_info_launch_default_for_uri (http, NULL, &error); + ret = g_app_info_launch_default_for_uri (http, context, &error); g_free (http); } else { - ret = g_app_info_launch_default_for_uri (uri, NULL, &error); + ret = g_app_info_launch_default_for_uri (uri, context, &error); } if (ret == FALSE) { @@ -5456,6 +5457,8 @@ launch_external_uri (EvWindow *window, EvLinkAction *action) "%s", _("Unable to open external link")); g_error_free (error); } + + /* FIXMEchpe: unref launch context? */ } static void