Mercurial > pidgin
view libpurple/plugins/mono/api/Status.cs @ 23863:4eae2d40f11b
Added a mute button for the local microphone.
| author | Mike Ruprecht <maiku@soc.pidgin.im> |
|---|---|
| date | Wed, 23 Jul 2008 22:34:22 +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; } } } }
