| 197 } |
197 } |
| 198 |
198 |
| 199 /* Idle reporting stuff */ |
199 /* Idle reporting stuff */ |
| 200 if (report_idle && (time_idle >= IDLEMARK)) |
200 if (report_idle && (time_idle >= IDLEMARK)) |
| 201 { |
201 { |
| 202 GList *l; |
202 const GList *l; |
| 203 for (l = purple_connections_get_all(); l != NULL; l = l->next) |
203 for (l = purple_connections_get_all(); l != NULL; l = l->next) |
| 204 { |
204 { |
| 205 PurpleConnection *gc = l->data; |
205 PurpleConnection *gc = l->data; |
| 206 set_account_idle(purple_connection_get_account(gc), time_idle); |
206 set_account_idle(purple_connection_get_account(gc), time_idle); |
| 207 } |
207 } |