Mercurial > pidgin
view libpurple/plugins/mono/api/Status.cs @ 24719:5ec72dbdd28e
Fix warnings where size_t/gsize was used for printf with the wrong format
specifier and fix some free's that should be g_free.
Fixes #7782.
committer: Elliott Sales de Andrade <qulogic@pidgin.im>
| author | Paul Aurich <paul@darkrain42.org> |
|---|---|
| date | Sun, 14 Dec 2008 02:58:44 +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; } } } }
