diff dw.h @ 494:edcf9ec12f8c

Fixed a bug in the dialog system on Unix where, gtk_main() could exit when dw_dialog_wait() and dw_dialog_dismiss() were called from different threads.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 02 Dec 2003 18:40:27 +0000
parents 9354c460d76b
children f3ed8dda02f8
line wrap: on
line diff
--- a/dw.h	Mon Nov 24 18:53:07 2003 +0000
+++ b/dw.h	Tue Dec 02 18:40:27 2003 +0000
@@ -797,6 +797,7 @@
 typedef struct _dwdialog {
 	HEV eve;
 	int done;
+	int method;
 	void *data, *result;
 } DWDialog;