Mercurial > pidgin
view libpurple/plugins/mono/api/Buddy.cs @ 28570:97fcfefdbda7
Convert Smiley theme selection to the simpler combo box affair that's in
the new prefs page.
| author | Elliott Sales de Andrade <qulogic@pidgin.im> |
|---|---|
| date | Mon, 16 Nov 2009 07:04:32 +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; } } } }
