Mercurial > pidgin.yaz
changeset 5718:c19cc2a3d65e
[gaim-migrate @ 6140]
Connecting using the checkbox works again. Sean broke it. Tsk tsk.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Tue, 03 Jun 2003 20:25:21 +0000 |
parents | 1d140b31d4b3 |
children | 29cded5d1ccf |
files | src/gtkaccount.c |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkaccount.c Tue Jun 03 19:55:47 2003 +0000 +++ b/src/gtkaccount.c Tue Jun 03 20:25:21 2003 +0000 @@ -1365,8 +1365,10 @@ gboolean online; gtk_tree_model_get_iter_from_string(model, &iter, path_str); - gtk_tree_model_get(model, &iter, COLUMN_DATA, &account, - COLUMN_ONLINE, &online, -1); + gtk_tree_model_get(model, &iter, + COLUMN_DATA, &account, + COLUMN_ONLINE, &online, + -1); if (online) gaim_account_disconnect(account); @@ -1436,8 +1438,6 @@ gtk_tree_view_insert_column(GTK_TREE_VIEW(treeview), column, -1); g_object_set(renderer, "xalign", 0.0, "xpad", 10, NULL); - - } static void @@ -1515,7 +1515,7 @@ dialog->model = gtk_list_store_new(NUM_COLUMNS, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_BOOLEAN, G_TYPE_BOOLEAN, - G_TYPE_BOOLEAN, G_TYPE_POINTER); + G_TYPE_POINTER); /* And now the actual treeview */ treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(dialog->model));