diff libpurple/protocols/msn/msn.c @ 30089:29df7408df03

Eliminate the name collisions on "Title". I have a few qualms: * I'm only guessing that Novell and Mxit's "Title" corresponds to the same thing as Jabber's (i.e. the vCard spec) * I changed MySpace and MSN's tune names to be in line with XMPP's, but they seem a bit ugly. * See the XXX in QQ Closes #1157, hopefully
author Paul Aurich <paul@darkrain42.org>
date Sun, 04 Apr 2010 04:31:54 +0000
parents 2cb6ea4420a0
children 49ffb40f3bcd b0bc67f42027 77b2d015bbf5
line wrap: on
line diff
--- a/libpurple/protocols/msn/msn.c	Sun Apr 04 03:42:16 2010 +0000
+++ b/libpurple/protocols/msn/msn.c	Sun Apr 04 04:31:54 2010 +0000
@@ -915,9 +915,9 @@
 
 	status = purple_status_type_new_with_attrs(PURPLE_STATUS_TUNE,
 			"tune", NULL, FALSE, TRUE, TRUE,
-			PURPLE_TUNE_ARTIST, _("Artist"), purple_value_new(PURPLE_TYPE_STRING),
-			PURPLE_TUNE_ALBUM, _("Album"), purple_value_new(PURPLE_TYPE_STRING),
-			PURPLE_TUNE_TITLE, _("Title"), purple_value_new(PURPLE_TYPE_STRING),
+			PURPLE_TUNE_ARTIST, _("Tune Artist"), purple_value_new(PURPLE_TYPE_STRING),
+			PURPLE_TUNE_ALBUM, _("Tune Album"), purple_value_new(PURPLE_TYPE_STRING),
+			PURPLE_TUNE_TITLE, _("Tune Title"), purple_value_new(PURPLE_TYPE_STRING),
 			"game", _("Game Title"), purple_value_new(PURPLE_TYPE_STRING),
 			"office", _("Office Title"), purple_value_new(PURPLE_TYPE_STRING),
 			NULL);