Mercurial > pidgin
view libpurple/plugins/mono/api/Event.cs @ 17283:9ecd2bb0ecc1
Fix double-free crash when sending messages (typo). Works again.
This revision marks the completion of converting msimprpl to use MsimMessage
for incoming protocol messages.
| author | Jeffrey Connelly <jaconnel@calpoly.edu> |
|---|---|
| date | Fri, 01 Jun 2007 06:20:23 +0000 |
| parents | 93bfbda79bf6 |
| children |
line wrap: on
line source
using System; namespace Purple { 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); } } }
