diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-28 17:06:11 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-28 17:06:11 +0800 |
commit | 7af6acca0b4bc147d6655d27566f1b287d8fb4da (patch) | |
tree | 951855791719e810f790dc5f76c84e856c38a229 | |
parent | b9511df4f7cc20f68259086a2821409a96ce4b66 (diff) | |
download | gsoc2013-empathy-7af6acca0b4bc147d6655d27566f1b287d8fb4da.tar gsoc2013-empathy-7af6acca0b4bc147d6655d27566f1b287d8fb4da.tar.gz gsoc2013-empathy-7af6acca0b4bc147d6655d27566f1b287d8fb4da.tar.bz2 gsoc2013-empathy-7af6acca0b4bc147d6655d27566f1b287d8fb4da.tar.lz gsoc2013-empathy-7af6acca0b4bc147d6655d27566f1b287d8fb4da.tar.xz gsoc2013-empathy-7af6acca0b4bc147d6655d27566f1b287d8fb4da.tar.zst gsoc2013-empathy-7af6acca0b4bc147d6655d27566f1b287d8fb4da.zip |
empathy-tp-contact-factory: coding style fixes
-rw-r--r-- | libempathy/empathy-tp-contact-factory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-tp-contact-factory.c b/libempathy/empathy-tp-contact-factory.c index 92b5b90f5..abef0c048 100644 --- a/libempathy/empathy-tp-contact-factory.c +++ b/libempathy/empathy-tp-contact-factory.c @@ -486,12 +486,12 @@ tp_contact_factory_geocode (EmpathyContact *contact) if (geocode == NULL) { geocode = geoclue_geocode_new (GEOCODE_SERVICE, GEOCODE_PATH); - g_object_add_weak_pointer (G_OBJECT (geocode), (gpointer*)&geocode); + g_object_add_weak_pointer (G_OBJECT (geocode), (gpointer *) &geocode); } else g_object_ref (geocode); - address = geoclue_address_details_new(); + address = geoclue_address_details_new (); str = get_dup_string (location, EMPATHY_LOCATION_COUNTRY); if (str != NULL) |