aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-account-chooser.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-05-18 23:06:14 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-05-18 23:07:18 +0800
commita0096d54af2c7b9a33610ac479de36683827780d (patch)
treef01ff2a142801cbe7f10a04fb2fed23c1c0c5d82 /libempathy-gtk/empathy-account-chooser.c
parent4d537af22726496380a36be7ddf073e098abdfeb (diff)
downloadgsoc2013-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/empathy-account-chooser.c')
-rw-r--r--libempathy-gtk/empathy-account-chooser.c20
1 files changed, 10 insertions, 10 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);
}