Sorry again, I didn't run cvs diff again on the header file. The attached dif will replace the file.h.diff sent earlier. I fails to include the last parameter for the find_ascii function added for the combo box.
As for the GTK_TABLE error, I apologize but I got most of what I have from the gu_dlg.c file and the GTK site. Not really comfortable with the GTK functions. I will try to see if I can find the cooresponding function for the combo box instead of GTK_TABLE. It might be as simple as replacing GTK_TABLE with GTK_COMBO?
Greg
>>> Guy Harris <guy@xxxxxxxxxxxx> 7/22/2003 12:34:38 PM >>>
On Tue, Jul 22, 2003 at 08:27:09AM -0600, Greg Morris wrote: > The second set of patches is a diff between my current source and the > current CVS as of yesterday morning. The attached diffs are the same but > I failed to include the file.h.diff which has the function prototype for > the find_ascii and get_int_value functions. So here is the complete > patch again to eliminate any confusion. Disregard the previous patches.
"file.h"'s prototype for "find_ascii()" doesn't match "find_ascii()"s declaration.
Also, in "find_dlg.c", you're doing
gtk_table_attach_defaults(GTK_TABLE(combo_hb), combo_cb, 1, 2, 0, 1);
but "combo_hb" is an hbox, not a table, so we get a warning from GTK+ when the Find dialog box pops up.
|