Mercurial > pidgin
view plugins/mono/api/Buddy.cs @ 12171:ffdd2ccf3a53
[gaim-migrate @ 14473]
Only set the gtk window's icon when updating a conversation's icon if the
conversation is the currently active conversation in the window.
committer: Tailor Script <tailor@pidgin.im>
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Sun, 20 Nov 2005 16:02:21 +0000 |
| parents | a3302d271199 |
| children |
line wrap: on
line source
namespace Gaim { public class Buddy { private string name; private string alias; public string Name { get { return name; } set { name = value; } } public string Alias { get { return alias; } set { alias = value; } } } }
