mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-05-03 12:36:53 +02:00
Oops, fix last commit.
svn path=/trunk/; revision=6438
This commit is contained in:
parent
a00c11f08a
commit
feb28ce3a7
@ -24,6 +24,7 @@
|
|||||||
#include "gappinfo.h"
|
#include "gappinfo.h"
|
||||||
#include "glibintl.h"
|
#include "glibintl.h"
|
||||||
#include <gioerror.h>
|
#include <gioerror.h>
|
||||||
|
#include <gfile.h>
|
||||||
|
|
||||||
#include "gioalias.h"
|
#include "gioalias.h"
|
||||||
|
|
||||||
@ -544,7 +545,7 @@ g_app_info_should_show (GAppInfo *appinfo)
|
|||||||
gboolean
|
gboolean
|
||||||
g_app_info_launch_default_for_uri (const char *uri,
|
g_app_info_launch_default_for_uri (const char *uri,
|
||||||
GAppLaunchContext *launch_context,
|
GAppLaunchContext *launch_context,
|
||||||
GError *error)
|
GError **error)
|
||||||
{
|
{
|
||||||
GAppInfo *app_info;
|
GAppInfo *app_info;
|
||||||
GFile *file;
|
GFile *file;
|
||||||
@ -561,7 +562,7 @@ g_app_info_launch_default_for_uri (const char *uri,
|
|||||||
* affect the uri which we don't want (for instance for a
|
* affect the uri which we don't want (for instance for a
|
||||||
* mailto: uri).
|
* mailto: uri).
|
||||||
*/
|
*/
|
||||||
l.data = uri;
|
l.data = (char *)uri;
|
||||||
l.next = l.prev = NULL;
|
l.next = l.prev = NULL;
|
||||||
res = g_app_info_launch_uris (app_info, &l,
|
res = g_app_info_launch_uris (app_info, &l,
|
||||||
launch_context, error);
|
launch_context, error);
|
||||||
|
@ -188,7 +188,7 @@ GAppInfo *g_app_info_get_default_for_uri_scheme (const char *uri_scheme);
|
|||||||
|
|
||||||
gboolean g_app_info_launch_default_for_uri (const char *uri,
|
gboolean g_app_info_launch_default_for_uri (const char *uri,
|
||||||
GAppLaunchContext *launch_context,
|
GAppLaunchContext *launch_context,
|
||||||
GError *error);
|
GError **error);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GAppLaunchContext:
|
* GAppLaunchContext:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user