diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 23:06:14 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 23:07:18 +0800 |
commit | a0096d54af2c7b9a33610ac479de36683827780d (patch) | |
tree | f01ff2a142801cbe7f10a04fb2fed23c1c0c5d82 /libempathy-gtk | |
parent | 4d537af22726496380a36be7ddf073e098abdfeb (diff) | |
download | gsoc2013-empathy-a0096d54af2c7b9a33610ac479de36683827780d.tar gsoc2013-empathy-a0096d54af2c7b9a33610ac479de36683827780d.tar.gz gsoc2013-empathy-a0096d54af2c7b9a33610ac479de36683827780d.tar.bz2 gsoc2013-empathy-a0096d54af2c7b9a33610ac479de36683827780d.tar.lz gsoc2013-empathy-a0096d54af2c7b9a33610ac479de36683827780d.tar.xz gsoc2013-empathy-a0096d54af2c7b9a33610ac479de36683827780d.tar.zst gsoc2013-empathy-a0096d54af2c7b9a33610ac479de36683827780d.zip |
empathy-account-chooser: fix coding style and update FSF address
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-account-chooser.c | 20 | ||||
-rw-r--r-- | libempathy-gtk/empathy-account-chooser.h | 8 |
2 files changed, 14 insertions, 14 deletions
diff --git a/libempathy-gtk/empathy-account-chooser.c b/libempathy-gtk/empathy-account-chooser.c index 5d11e8e1e..915b37b23 100644 --- a/libempathy-gtk/empathy-account-chooser.c +++ b/libempathy-gtk/empathy-account-chooser.c @@ -15,9 +15,9 @@ * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - * + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA + * * Authors: Martyn Russell <martyn@imendio.com> * Xavier Claessens <xclaesse@gmail.com> */ @@ -401,22 +401,22 @@ empathy_account_chooser_set_has_all_option (EmpathyAccountChooser *chooser, */ if (has_all_option) { - gtk_combo_box_set_row_separator_func (GTK_COMBO_BOX (chooser), + gtk_combo_box_set_row_separator_func (GTK_COMBO_BOX (chooser), (GtkTreeViewRowSeparatorFunc) account_chooser_separator_func, - chooser, + chooser, NULL); gtk_list_store_prepend (store, &iter); - gtk_list_store_set (store, &iter, + gtk_list_store_set (store, &iter, COL_ACCOUNT_TEXT, NULL, COL_ACCOUNT_ENABLED, TRUE, COL_ACCOUNT_POINTER, NULL, -1); gtk_list_store_prepend (store, &iter); - gtk_list_store_set (store, &iter, - COL_ACCOUNT_TEXT, _("All"), + gtk_list_store_set (store, &iter, + COL_ACCOUNT_TEXT, _("All"), COL_ACCOUNT_ENABLED, TRUE, COL_ACCOUNT_POINTER, NULL, -1); @@ -427,10 +427,10 @@ empathy_account_chooser_set_has_all_option (EmpathyAccountChooser *chooser, } } - gtk_combo_box_set_row_separator_func (GTK_COMBO_BOX (chooser), + gtk_combo_box_set_row_separator_func (GTK_COMBO_BOX (chooser), (GtkTreeViewRowSeparatorFunc) NULL, - NULL, + NULL, NULL); } diff --git a/libempathy-gtk/empathy-account-chooser.h b/libempathy-gtk/empathy-account-chooser.h index 98d568bcc..004a3e87f 100644 --- a/libempathy-gtk/empathy-account-chooser.h +++ b/libempathy-gtk/empathy-account-chooser.h @@ -15,9 +15,9 @@ * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - * + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA + * * Authors: Martyn Russell <martyn@imendio.com> * Xavier Claessens <xclaesse@gmail.com> */ @@ -68,7 +68,7 @@ void empathy_account_chooser_set_has_all_option (EmpathyAccountChooser void empathy_account_chooser_set_filter (EmpathyAccountChooser *chooser, EmpathyAccountChooserFilterFunc filter, gpointer user_data); -gboolean empathy_account_chooser_filter_is_connected(McAccount *account, +gboolean empathy_account_chooser_filter_is_connected (McAccount *account, gpointer user_data); G_END_DECLS |