Mercurial > pidgin
view libpurple/plugins/mono/api/Status.cs @ 30378:c5790044f32f
Oh, there's a title parameter in purple_notify_formatted()! Shiny.
author | ivan.komarov@soc.pidgin.im |
---|---|
date | Sun, 04 Jul 2010 01:13:11 +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; } } } }