diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-15 23:51:02 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 16:48:42 +0800 |
commit | 52762cb355196085d56d3ae7a79519a6d1bcd899 (patch) | |
tree | f23c903911940ef098e53d76db32c2ffc4ac3951 | |
parent | 8cb7b09f0304ec0cdb48bbe9ef0b9fa5dda29442 (diff) | |
download | gsoc2013-empathy-52762cb355196085d56d3ae7a79519a6d1bcd899.tar gsoc2013-empathy-52762cb355196085d56d3ae7a79519a6d1bcd899.tar.gz gsoc2013-empathy-52762cb355196085d56d3ae7a79519a6d1bcd899.tar.bz2 gsoc2013-empathy-52762cb355196085d56d3ae7a79519a6d1bcd899.tar.lz gsoc2013-empathy-52762cb355196085d56d3ae7a79519a6d1bcd899.tar.xz gsoc2013-empathy-52762cb355196085d56d3ae7a79519a6d1bcd899.tar.zst gsoc2013-empathy-52762cb355196085d56d3ae7a79519a6d1bcd899.zip |
empathy: fix coding style
-rw-r--r-- | src/empathy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy.c b/src/empathy.c index 5cd49fd30..fe122e01f 100644 --- a/src/empathy.c +++ b/src/empathy.c @@ -229,7 +229,7 @@ create_salut_account (void) GError *error = NULL; /* Check if we already created a salut account */ - empathy_conf_get_bool (empathy_conf_get(), + empathy_conf_get_bool (empathy_conf_get (), EMPATHY_PREFS_SALUT_ACCOUNT_CREATED, &salut_created); if (salut_created) { @@ -462,7 +462,7 @@ main (int argc, char *argv[]) empathy_gtk_init (); g_set_application_name (_(PACKAGE_NAME)); - g_setenv("PULSE_PROP_media.role", "phone", TRUE); + g_setenv ("PULSE_PROP_media.role", "phone", TRUE); gst_init (&argc, &argv); @@ -533,7 +533,7 @@ main (int argc, char *argv[]) use_nm_notify_cb, idle); /* Autoconnect */ - empathy_conf_get_bool (empathy_conf_get(), + empathy_conf_get_bool (empathy_conf_get (), EMPATHY_PREFS_AUTOCONNECT, &autoconnect); if (autoconnect && ! no_connect && |