comparison src/idle.c @ 13663:b76c6de0c3b5

[gaim-migrate @ 16065] Kill a number of trivial UNUSED_VALUE "defects": CID 155 CID 156 CID 157 CID 158 CID 159 CID 160 CID 161 CID 162 CID 163 CID 165 CID 166 CID 167 CID 173 CID 174 CID 177 committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Wed, 19 Apr 2006 05:50:50 +0000
parents bd80fb1e8406
children f8a44204b1bc
comparison
equal deleted inserted replaced
13662:b198d0c26b83 13663:b76c6de0c3b5
91 static void 91 static void
92 unset_account_autoaway(GaimConnection *gc) 92 unset_account_autoaway(GaimConnection *gc)
93 { 93 {
94 GaimAccount *account; 94 GaimAccount *account;
95 GaimPresence *presence; 95 GaimPresence *presence;
96 GaimStatus *status;
97 GaimSavedStatus *saved_status; 96 GaimSavedStatus *saved_status;
98 97
99 account = gaim_connection_get_account(gc); 98 account = gaim_connection_get_account(gc);
100 presence = gaim_account_get_presence(account); 99 presence = gaim_account_get_presence(account);
101 status = gaim_presence_get_active_status(presence);
102 100
103 if (!gc->is_auto_away) 101 if (!gc->is_auto_away)
104 /* This account is already not auto-away! */ 102 /* This account is already not auto-away! */
105 return; 103 return;
106 104