# HG changeset patch # User celestar # Date 1167732756 0 # Node ID 3a01b04b9a8e69c823d642269dcfd51333bad77f # Parent c61d481dbd0bdaf1cc031f544ef25635dae86a1e (svn r7741) [cbh] - Fix: committed one file too many on last commit diff -r c61d481dbd0b -r 3a01b04b9a8e misc_gui.c --- a/misc_gui.c Tue Jan 02 10:07:27 2007 +0000 +++ b/misc_gui.c Tue Jan 02 10:12:36 2007 +0000 @@ -1181,9 +1181,9 @@ typedef struct query_d { - void (*proc)(Window*, bool); ///< callback function executed on closing of popup. Window* points to parent, bool is true if 'yes' clicked, false otherwise StringID message; ///< message shown for query window uint32 params[20]; ///< local copy of _decode_parameters + void (*proc)(Window*, bool); ///< callback function executed on closing of popup. Window* points to parent, bool is true if 'yes' clicked, false otherwise bool calledback; ///< has callback been executed already (internal usage for WE_DESTROY event) } query_d; assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(query_d));