Fri, 18 Nov 2005 12:47:41 +0000
[gaim-migrate @ 14430]
SF Patch #1359694 from Sadrul
"I don't know what the reason behind this is -- but it'd
be nice if irc/silc accounts could be set offline from
the account-spec statusboxes."
committer: Richard Laager <rlaager@pidgin.im>
| src/protocols/irc/irc.c | file | annotate | diff | comparison | revisions | |
| src/protocols/silc/silc.c | file | annotate | diff | comparison | revisions |
--- a/src/protocols/irc/irc.c Fri Nov 18 12:44:07 2005 +0000 +++ b/src/protocols/irc/irc.c Fri Nov 18 12:47:41 2005 +0000 @@ -164,7 +164,7 @@ GList *types = NULL; type = gaim_status_type_new(GAIM_STATUS_OFFLINE, "offline", - _("Offline"), FALSE); + _("Offline"), TRUE); types = g_list_append(types, type); type = gaim_status_type_new(GAIM_STATUS_AVAILABLE, "available",
--- a/src/protocols/silc/silc.c Fri Nov 18 12:44:07 2005 +0000 +++ b/src/protocols/silc/silc.c Fri Nov 18 12:47:41 2005 +0000 @@ -44,7 +44,7 @@ GaimStatusType *type; GList *types = NULL; - type = gaim_status_type_new_full(GAIM_STATUS_OFFLINE, SILCGAIM_STATUS_ID_OFFLINE, _("Offline"), FALSE, FALSE, FALSE); + type = gaim_status_type_new_full(GAIM_STATUS_OFFLINE, SILCGAIM_STATUS_ID_OFFLINE, _("Offline"), FALSE, TRUE, FALSE); types = g_list_append(types, type); type = gaim_status_type_new_full(GAIM_STATUS_AVAILABLE, SILCGAIM_STATUS_ID_AVAILABLE, _("Available"), FALSE, TRUE, FALSE); types = g_list_append(types, type);