Mercurial > pidgin
view plugins/mono/api/Event.cs @ 13211:ca559e2b1d0a
[gaim-migrate @ 15575]
Just a couple miscellaneous whitespace, spelling, and warning fixed from one
of my trees.
committer: Tailor Script <tailor@pidgin.im>
| author | Etan Reisner <pidgin@unreliablesource.net> |
|---|---|
| date | Fri, 10 Feb 2006 05:14:46 +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); } } }
