~prateek.karandikar/ubuntu/precise/pidgin/add_quicklist

« back to all changes in this revision

Viewing changes to libpurple/plugins/idle.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-11-05 19:44:21 UTC
  • mfrom: (62.1.1 maverick-security) (2.3.12 sid)
  • Revision ID: james.westby@ubuntu.com-20101105194421-8r8o4pzw2m5j4hiy
Tags: 1:2.7.5-1ubuntu1
Resync on Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
        PurpleAccount *acct = NULL;
105
105
        GList *list, *iter;
106
106
        int tm = purple_request_fields_get_integer(fields, "mins");
107
 
        const char *prpl_id = NULL;
108
107
 
109
108
        list = purple_accounts_get_all_active();
110
109
        for(iter = list; iter; iter = iter->next) {
111
110
                acct = (PurpleAccount *)(iter->data);
112
111
 
113
 
                if(acct)
114
 
                        prpl_id = purple_account_get_protocol_id(acct);
115
 
 
116
112
                if(acct && idleable_filter(acct)) {
117
113
                        purple_debug_misc("idle", "Idling %s.\n",
118
114
                                        purple_account_get_username(acct));