Ethereal-cvs: [ethereal-cvs] cvs commit: ethereal capture.c column.c display.c prefs.c print.c

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: "Gilbert Ramirez Jr." <gram@xxxxxxxxxxxx>
Date: Mon, 21 Jun 1999 14:04:41 -0500 (CDT)
gram        1999/06/21 14:04:39 CDT

  Modified files:
    .                    capture.c column.c display.c prefs.c 
                         print.c 
  Log:
  Found some erroneous usages of gtk_signal_connect_object. I always wondered
  why I had to swap fields (data = w) in some of the callback functions when
  I added support for gtk+-1.1. Because of the use of gtk_signal_connect_object,
  the wrong value was being sent to the callback function. We were just lucky
  that with gtk+-1.0 it worked.
  
  gtk_signal_connect_object is for use with callbacks that take one argument.
  gtk_signal_connect is for use with callbacks that take two arguments.
  
  Revision  Changes    Path
  1.28      +14 -19    ethereal/capture.c
  1.14      +2 -2      ethereal/column.c
  1.4       +11 -18    ethereal/display.c
  1.18      +21 -29    ethereal/prefs.c
  1.10      +4 -4      ethereal/print.c