comparison libpurple/prpl.h @ 26903:cda10ae89918

Clarify (hopefully) the usage of OPT_PROTO_UNIQUE_CHATNAME; arose in a discussion in #pidgin.
author Paul Aurich <paul@darkrain42.org>
date Tue, 19 May 2009 01:06:56 +0000
parents 83e6e710cbf3
children c2cd559e034f e37f85160784 4f14b03a9d50
comparison
equal deleted inserted replaced
26899:47d963966c9a 26903:cda10ae89918
124 * These should all be stuff that some plugins can do and others can't. 124 * These should all be stuff that some plugins can do and others can't.
125 */ 125 */
126 typedef enum 126 typedef enum
127 { 127 {
128 /** 128 /**
129 * Use a unique name, not an alias, for chat rooms. 129 * User names are unique to a chat and are not shared between rooms.
130 * 130 *
131 * XMPP lets you choose what name you want for chat. 131 * XMPP lets you choose what name you want in chats, so it shouldn't
132 * So it shouldn't be pulling the alias for when you're in chat; 132 * be pulling the aliases from the buddy list for the chat list;
133 * it gets annoying. 133 * it gets annoying.
134 */ 134 */
135 OPT_PROTO_UNIQUE_CHATNAME = 0x00000004, 135 OPT_PROTO_UNIQUE_CHATNAME = 0x00000004,
136 136
137 /** 137 /**