Mercurial > pidgin
view libpurple/plugins/mono/api/Status.cs @ 20667:cdabb4ee9468
- Prompt the user if the local peer certificate cache is not found.
Fixes #3318
| author | William Ehlhardt <williamehlhardt@gmail.com> |
|---|---|
| date | Thu, 27 Sep 2007 08:12:09 +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; } } } }
