| 1625 /* Remove the group from all accounts that are online */ |
1625 /* Remove the group from all accounts that are online */ |
| 1626 for (l = purple_connections_get_all(); l != NULL; l = l->next) |
1626 for (l = purple_connections_get_all(); l != NULL; l = l->next) |
| 1627 { |
1627 { |
| 1628 PurpleConnection *gc = (PurpleConnection *)l->data; |
1628 PurpleConnection *gc = (PurpleConnection *)l->data; |
| 1629 |
1629 |
| 1630 if (purple_connection_get_state(gc) == PURPLE_CONNECTION_CONNECTED) |
1630 if(purple_connection_get_state(gc) == PURPLE_CONNECTION_STATE_CONNECTED) { |
| 1631 purple_account_remove_group(purple_connection_get_account(gc), group); |
1631 purple_account_remove_group(purple_connection_get_account(gc), group); |
| |
1632 } |
| 1632 } |
1633 } |
| 1633 |
1634 |
| 1634 /* Delete the node */ |
1635 /* Delete the node */ |
| 1635 g_object_unref(group); |
1636 g_object_unref(group); |
| 1636 } |
1637 } |