plugins/mono/api/Event.cs@9d23e63373be
plugins/mono/api/Event.cs
Fri, 28 Jul 2006 12:19:56 +0000
- author
- Richard Laager <rlaager@pidgin.im>
- date
- Fri, 28 Jul 2006 12:19:56 +0000
- changeset 14067
- 9d23e63373be
- parent 11660
-
a7cf8f7d43b3
- permissions
- -rw-r--r--
[gaim-migrate @ 16590]
(03:00:12) chaosite: SIZE_OF_TIME_T in gtkconv.c:6533 as well
(03:08:48) chaosite: rlaager: ping
(03:09:22) chaosite: rlaager: svn says that SIZE_OF_TIME_T in log.c:609 is your commit
(03:09:31) chaosite: rlaager: it should be SIZEOF_TIME_T
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);
}
}
}