comparison src/account.c @ 10067:39142bdd5ba6

[gaim-migrate @ 11043] This is sf patch 1031460, Added gaim_status_[type_]is_exclusive So we can do gaim_status_type_is_exlusive(status_type) instead of !gaim_status_type_is_independent(status_type) Also, I'll be out of town all next week, starting Saturday (not that it'll matter, I've barely had any Gaim-time the last week or two) committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 27 Sep 2004 22:05:27 +0000
parents eaec201b2688
children 131f70fc53c1
comparison
equal deleted inserted replaced
10066:2c8a9f9a71e6 10067:39142bdd5ba6
566 status_id, gaim_account_get_username(account), 566 status_id, gaim_account_get_username(account),
567 gaim_account_get_protocol_id(account)); 567 gaim_account_get_protocol_id(account));
568 return; 568 return;
569 } 569 }
570 570
571 if (!active && gaim_status_is_independent(status)) 571 if (!active && gaim_status_is_exclusive(status))
572 { 572 {
573 gaim_debug(GAIM_DEBUG_ERROR, "accounts", 573 gaim_debug(GAIM_DEBUG_ERROR, "accounts",
574 "Cannot deactivate an exclusive status.\n"); 574 "Cannot deactivate an exclusive status.\n");
575 return; 575 return;
576 } 576 }