comparison plugins/tcl/tcl_glib.c @ 7822:ea4f65164307

[gaim-migrate @ 8474] I think this makes Tcl 8.4 work ... Tk 8.4 remains suspect. committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Tue, 09 Dec 2003 23:34:54 +0000
parents 2d2f04c5c7d2
children 409f7f167c98
comparison
equal deleted inserted replaced
7821:ea8a104c053d 7822:ea4f65164307
77 77
78 void tcl_glib_init () 78 void tcl_glib_init ()
79 { 79 {
80 Tcl_NotifierProcs notifier; 80 Tcl_NotifierProcs notifier;
81 81
82 memset(&notifier, 0, sizeof(notifier));
83
82 notifier.createFileHandlerProc = tcl_create_file_handler; 84 notifier.createFileHandlerProc = tcl_create_file_handler;
83 notifier.deleteFileHandlerProc = tcl_delete_file_handler; 85 notifier.deleteFileHandlerProc = tcl_delete_file_handler;
84 notifier.setTimerProc = tcl_set_timer; 86 notifier.setTimerProc = tcl_set_timer;
85 notifier.waitForEventProc = tcl_wait_for_event; 87 notifier.waitForEventProc = tcl_wait_for_event;
86 88