aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2014-08-28 19:31:44 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2014-08-28 19:31:44 +0800
commitc6cee47a6da4b09b42213dcd1d903979a0f54f57 (patch)
tree4095192ac9f61526bd5d168ad202630133e3279b
parenta8a060fb4022f07e60a7c7f97ea1591152cb89cf (diff)
downloadgsoc2013-empathy-c6cee47a6da4b09b42213dcd1d903979a0f54f57.tar
gsoc2013-empathy-c6cee47a6da4b09b42213dcd1d903979a0f54f57.tar.gz
gsoc2013-empathy-c6cee47a6da4b09b42213dcd1d903979a0f54f57.tar.bz2
gsoc2013-empathy-c6cee47a6da4b09b42213dcd1d903979a0f54f57.tar.lz
gsoc2013-empathy-c6cee47a6da4b09b42213dcd1d903979a0f54f57.tar.xz
gsoc2013-empathy-c6cee47a6da4b09b42213dcd1d903979a0f54f57.tar.zst
gsoc2013-empathy-c6cee47a6da4b09b42213dcd1d903979a0f54f57.zip
don't pass a GError when first trying to start gnome-contacts
-rw-r--r--libempathy-gtk/empathy-individual-information-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-individual-information-dialog.c b/libempathy-gtk/empathy-individual-information-dialog.c
index 22bdb91ee..baa1e4c04 100644
--- a/libempathy-gtk/empathy-individual-information-dialog.c
+++ b/libempathy-gtk/empathy-individual-information-dialog.c
@@ -371,7 +371,7 @@ start_gnome_contacts (FolksIndividual *individual,
args = g_strdup_printf ("-i %s", folks_individual_get_id (individual));
/* First try the old desktop name */
- if (empathy_launch_external_app ("gnome-contacts.desktop", args, &error))
+ if (empathy_launch_external_app ("gnome-contacts.desktop", args, NULL))
goto out;
if (!empathy_launch_external_app ("org.gnome.Contacts.desktop", args, &error))