mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-21 14:49:16 +02:00
Actually call the launch_uris method, not launch.
2008-02-01 Alexander Larsson <alexl@redhat.com> * gappinfo.c (g_app_info_launch_uris): Actually call the launch_uris method, not launch. 2008-02-01 Alexander Larsson <alexl@redhat.com> * gdesktopappinfo.c (g_desktop_app_info_equal): Ensure appinfos with no id but same pointer value compare equal svn path=/trunk/; revision=6440
This commit is contained in:
parent
d9b8be3b5c
commit
a7749bab36
@ -1,3 +1,15 @@
|
|||||||
|
2008-02-01 Alexander Larsson <alexl@redhat.com>
|
||||||
|
|
||||||
|
* gappinfo.c (g_app_info_launch_uris):
|
||||||
|
Actually call the launch_uris method, not
|
||||||
|
launch.
|
||||||
|
|
||||||
|
2008-02-01 Alexander Larsson <alexl@redhat.com>
|
||||||
|
|
||||||
|
* gdesktopappinfo.c (g_desktop_app_info_equal):
|
||||||
|
Ensure appinfos with no id but same pointer value
|
||||||
|
compare equal
|
||||||
|
|
||||||
2008-02-01 Alexander Larsson <alexl@redhat.com>
|
2008-02-01 Alexander Larsson <alexl@redhat.com>
|
||||||
|
|
||||||
* gappinfo.c (g_app_info_launch_default_for_uri):
|
* gappinfo.c (g_app_info_launch_default_for_uri):
|
||||||
|
@ -504,7 +504,7 @@ g_app_info_launch_uris (GAppInfo *appinfo,
|
|||||||
|
|
||||||
iface = G_APP_INFO_GET_IFACE (appinfo);
|
iface = G_APP_INFO_GET_IFACE (appinfo);
|
||||||
|
|
||||||
return (* iface->launch) (appinfo, uris, launch_context, error);
|
return (* iface->launch_uris) (appinfo, uris, launch_context, error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -388,7 +388,7 @@ g_desktop_app_info_equal (GAppInfo *appinfo1,
|
|||||||
|
|
||||||
if (info1->desktop_id == NULL ||
|
if (info1->desktop_id == NULL ||
|
||||||
info2->desktop_id == NULL)
|
info2->desktop_id == NULL)
|
||||||
return FALSE;
|
return info1 == info2;
|
||||||
|
|
||||||
return strcmp (info1->desktop_id, info2->desktop_id) == 0;
|
return strcmp (info1->desktop_id, info2->desktop_id) == 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user