Mercurial > pidgin
view plugins/mono/api/Status.cs @ 14165:b04e36dae7af
[gaim-migrate @ 16815]
If g_open isn't a macro, we need to specify the mode variable
committer: Tailor Script <tailor@pidgin.im>
| author | Daniel Atallah <daniel.atallah@gmail.com> |
|---|---|
| date | Thu, 17 Aug 2006 14:07:20 +0000 |
| parents | 67fbd2ff4c4e |
| children |
line wrap: on
line source
namespace Gaim { public class Status { private string id; public string Id { get { return id; } set { id = value; } } } }
