changeset 11487:4b021f78c1ed

[gaim-migrate @ 13729] Fix GaryBug#29 & GaryBug#35 committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 10 Sep 2005 17:20:36 +0000
parents 3ca08210da50
children 9c7ca8a8c4b8
files src/protocols/msn/msn.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/protocols/msn/msn.c	Fri Sep 09 21:05:02 2005 +0000
+++ b/src/protocols/msn/msn.c	Sat Sep 10 17:20:36 2005 +0000
@@ -597,7 +597,7 @@
 			_("Out To Lunch"), FALSE, TRUE, FALSE);
 	types = g_list_append(types, status);
 
-	status = gaim_status_type_new_full(GAIM_STATUS_HIDDEN, "hidden",
+	status = gaim_status_type_new_full(GAIM_STATUS_HIDDEN, "invisible",
 			_("Hidden"), FALSE, TRUE, FALSE);
 	types = g_list_append(types, status);
 
@@ -908,7 +908,7 @@
 		msnstatus = MSN_PHONE;
 	else if (!strcmp(state, "lunch"))
 		msnstatus = MSN_LUNCH;
-	else if (!strcmp(state, "hidden"))
+	else if (!strcmp(state, "invisible"))
 		msnstatus = MSN_HIDDEN;
 	else if (0) /* how do we detect idle with new status? */
 		msnstatus = MSN_IDLE;