Mercurial > pidgin
view libgaim/plugins/mono/api/Event.cs @ 14781:56dbadfa6543
[gaim-migrate @ 17545]
Patch #1580124 from Richard Nelson (wabz): There's no need to update a contact
if it doesn't have any child.
committer: Tailor Script <tailor@pidgin.im>
| author | Sadrul Habib Chowdhury <imadil@gmail.com> |
|---|---|
| date | Thu, 19 Oct 2006 05:56:00 +0000 |
| parents | 60b1bc8dbf37 |
| 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); } } }
