diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 20:46:39 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 21:01:02 +0800 |
commit | a0605bdf7f09a224a81d24909702c347319ae728 (patch) | |
tree | 8d12605a7d2295de60cbf7b2a3db3157ac427b27 | |
parent | 518a613ee08adde8b1e9516d9e82e6baa72ec882 (diff) | |
download | gsoc2013-empathy-a0605bdf7f09a224a81d24909702c347319ae728.tar gsoc2013-empathy-a0605bdf7f09a224a81d24909702c347319ae728.tar.gz gsoc2013-empathy-a0605bdf7f09a224a81d24909702c347319ae728.tar.bz2 gsoc2013-empathy-a0605bdf7f09a224a81d24909702c347319ae728.tar.lz gsoc2013-empathy-a0605bdf7f09a224a81d24909702c347319ae728.tar.xz gsoc2013-empathy-a0605bdf7f09a224a81d24909702c347319ae728.tar.zst gsoc2013-empathy-a0605bdf7f09a224a81d24909702c347319ae728.zip |
empathy-account-manager: fix coding style
-rw-r--r-- | libempathy/empathy-account-manager.c | 10 | ||||
-rw-r--r-- | libempathy/empathy-account-manager.h | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/libempathy/empathy-account-manager.c b/libempathy/empathy-account-manager.c index b84543176..ed8ee996f 100644 --- a/libempathy/empathy-account-manager.c +++ b/libempathy/empathy-account-manager.c @@ -14,7 +14,7 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * + * * Authors: Cosimo Cecchi <cosimo.cecchi@collabora.co.uk> */ @@ -451,7 +451,7 @@ empathy_account_manager_init (EmpathyAccountManager *manager) priv->accounts = g_hash_table_new_full (empathy_account_hash, empathy_account_equal, - g_object_unref, + g_object_unref, (GDestroyNotify) account_data_free); priv->connections = g_hash_table_new_full (g_direct_hash, g_direct_equal, g_object_unref, g_object_unref); @@ -531,7 +531,7 @@ do_dispose (GObject *obj) G_OBJECT_CLASS (empathy_account_manager_parent_class)->dispose (obj); } -static GObject* +static GObject * do_constructor (GType type, guint n_construct_params, GObjectConstructParam *construct_params) @@ -647,7 +647,7 @@ empathy_account_manager_class_init (EmpathyAccountManagerClass *klass) g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, TP_TYPE_CONNECTION); - + g_type_class_add_private (oclass, sizeof (EmpathyAccountManagerPriv)); } @@ -800,7 +800,7 @@ empathy_account_manager_dup_connections (EmpathyAccountManager *manager) priv = GET_PRIV (manager); g_hash_table_iter_init (&iter, priv->connections); - while (g_hash_table_iter_next (&iter, &connection, NULL)) + while (g_hash_table_iter_next (&iter, &connection, NULL)) if (connection != NULL && tp_connection_is_ready (connection)) ret = g_list_prepend (ret, g_object_ref (connection)); diff --git a/libempathy/empathy-account-manager.h b/libempathy/empathy-account-manager.h index ac90a34f7..11ca6aca2 100644 --- a/libempathy/empathy-account-manager.h +++ b/libempathy/empathy-account-manager.h @@ -52,7 +52,7 @@ GType empathy_account_manager_get_type (void); /* public methods */ EmpathyAccountManager * empathy_account_manager_dup_singleton (void); -int empathy_account_manager_get_connected_accounts +int empathy_account_manager_get_connected_accounts (EmpathyAccountManager *manager); int empathy_account_manager_get_connecting_accounts (EmpathyAccountManager *manager); |