Mercurial > pidgin
view plugins/mono/api/Event.cs @ 12267:df93ed932b3a
[gaim-migrate @ 14569]
"This patch fixes formatting in the yahoo profile pages for items grabbed from the tooltip", so sayeth the Bleeter.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Wed, 30 Nov 2005 01:49:54 +0000 |
parents | a3302d271199 |
children |
line wrap: on
line source
using System; namespace Gaim { public class Event { private IntPtr handle; private string signal; public Event(IntPtr h, string s) { handle = h; signal = s; } public void connect(object plugin, Signal.Handler handler) { Signal.connect(handle, plugin, signal, handler); } } }