diff dwtest.c @ 199:b955228477b3

Removed the window parameter to dw_timer_connect() it was no needed.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 20 Jan 2003 20:21:06 +0000
parents 11b5da6196c2
children e0beea487e8f
line wrap: on
line diff
--- a/dwtest.c	Mon Jan 20 11:16:27 2003 +0000
+++ b/dwtest.c	Mon Jan 20 20:21:06 2003 +0000
@@ -235,7 +235,7 @@
 	text_add();
 
 	dw_signal_connect(mainwindow, "delete_event", DW_SIGNAL_FUNC(exit_callback), (void *)mainwindow);
-	timerid = dw_timer_connect(mainwindow, 1000, DW_SIGNAL_FUNC(timer_callback), 0);
+	timerid = dw_timer_connect(1000, DW_SIGNAL_FUNC(timer_callback), 0);
 	dw_window_set_usize(mainwindow, 640, 480);
 	dw_window_show(mainwindow);