Mercurial > pidgin
view plugins/mono/api/Event.cs @ 11737:3959c29f340f
[gaim-migrate @ 14028]
This isn't customizable yet, but that's looking uglier than I like. This
should still help people like Sean with problems seeing certain colors. I
picked what made sense to me, people please change things if you think
differently.
committer: Tailor Script <tailor@pidgin.im>
| author | Etan Reisner <pidgin@unreliablesource.net> |
|---|---|
| date | Sun, 23 Oct 2005 03:57:10 +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); } } }
