glib r6440 - trunk/gio
- From: alexl svn gnome org
- To: svn-commits-list gnome org
- Subject: glib r6440 - trunk/gio
- Date: Fri, 1 Feb 2008 12:02:53 +0000 (GMT)
Author: alexl
Date: Fri Feb 1 12:02:52 2008
New Revision: 6440
URL: http://svn.gnome.org/viewvc/glib?rev=6440&view=rev
Log:
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
Modified:
trunk/gio/ChangeLog
trunk/gio/gappinfo.c
trunk/gio/gdesktopappinfo.c
Modified: trunk/gio/gappinfo.c
==============================================================================
--- trunk/gio/gappinfo.c (original)
+++ trunk/gio/gappinfo.c Fri Feb 1 12:02:52 2008
@@ -504,7 +504,7 @@
iface = G_APP_INFO_GET_IFACE (appinfo);
- return (* iface->launch) (appinfo, uris, launch_context, error);
+ return (* iface->launch_uris) (appinfo, uris, launch_context, error);
}
Modified: trunk/gio/gdesktopappinfo.c
==============================================================================
--- trunk/gio/gdesktopappinfo.c (original)
+++ trunk/gio/gdesktopappinfo.c Fri Feb 1 12:02:52 2008
@@ -388,7 +388,7 @@
if (info1->desktop_id == NULL ||
info2->desktop_id == NULL)
- return FALSE;
+ return info1 == info2;
return strcmp (info1->desktop_id, info2->desktop_id) == 0;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]