Mercurial > pidgin
view libpurple/plugins/mono/api/Status.cs @ 16325:ca75eccdca3d
Make sure the blinking docklet has the same size. Fixes #174.
| author | Sadrul Habib Chowdhury <imadil@gmail.com> |
|---|---|
| date | Tue, 24 Apr 2007 21:54:12 +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; } } } }
