Mercurial > pidgin
view libpurple/plugins/mono/api/Status.cs @ 32766:fd1b4bbefc6b
Port to Farstream
Farstream is the new name of Farsight.
The changes to support Farstream are from ocrete. rlaager modified the
patch to retain the Farsight code using #ifdef HAVE_FARSIGHT.
committer: Richard Laager <rlaager@wiktel.com>
author | olivier.crete@collabora.com |
---|---|
date | Thu, 05 Apr 2012 03:18:40 +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; } } } }