Mercurial > pidgin
view libpurple/plugins/mono/api/Buddy.cs @ 28824:5259ca10b641
Show the name of the account in the "Set Friendly Name" dialog.
Fixes #3749.
| author | Elliott Sales de Andrade <qulogic@pidgin.im> |
|---|---|
| date | Wed, 23 Dec 2009 07:13:27 +0000 |
| parents | 93bfbda79bf6 |
| children |
line wrap: on
line source
namespace Purple { public class Buddy : BlistNode { private string name; private string alias; public string Name { get { return name; } set { name = value; } } public string Alias { get { return alias; } set { alias = value; } } } }
