Mercurial > pidgin
view libpurple/plugins/mono/api/Status.cs @ 32583:2bc917bbd07e
Move some UI manager stuff out of the blist structure and into the source
as static variables. At the structure keeps the same size this way.
| author | Elliott Sales de Andrade <qulogic@pidgin.im> |
|---|---|
| date | Tue, 28 Jul 2009 00:50:25 +0000 |
| parents | 93bfbda79bf6 |
| children |
line wrap: on
line source
namespace Purple { public class Status { private string id; public string Id { get { return id; } set { id = value; } } } }
