Changeset 04026d4 for lib/events_glib.c
- Timestamp:
- 2006-07-15T17:26:13Z (19 years ago)
- Branches:
- master
- Children:
- 0aaca60
- Parents:
- 89a1809
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/events_glib.c
r89a1809 r04026d4 122 122 gint b_timeout_add(gint timeout, b_event_handler func, gpointer data) 123 123 { 124 gint st = g_timeout_add(timeout, func, data); 124 /* GSourceFunc and the BitlBee event handler function aren't 125 really the same, but they're "compatible". ;-) It will do 126 for now, BitlBee only looks at the "data" argument. */ 127 gint st = g_timeout_add(timeout, (GSourceFunc) func, data); 125 128 126 129 event_debug( "b_timeout_add( %d, %d, %d ) = %d\n", timeout, func, data, st );
Note: See TracChangeset
for help on using the changeset viewer.