Mercurial > pidgin
view plugins/mono/api/Status.cs @ 12576:1246935dd047
[gaim-migrate @ 14898]
Attempting to join a chat you're already in should present the chat.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Tue, 20 Dec 2005 09:35:56 +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; } } } }