Wireshark-commits: [Wireshark-commits] rev 34455: /trunk/gtk/ /trunk/gtk/: follow_ssl.c follow_tcp.

Date: Sun, 10 Oct 2010 19:33:44 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=34455

User: etxrab
Date: 2010/10/10 12:33 PM

Log:
 - Fix more callbacks.
 
 When using the GUImanager the callback signature is (GtkAction *action , gpointer user_data) which causes problems when retreiveing
 object data stored with the widget such as the filter box widget.
 
 Work around that problem by doing
 	filter_cm = g_object_get_data(G_OBJECT(top_level), E_DFILTER_CM_KEY);
 	filter_te = gtk_bin_get_child(GTK_BIN(filter_cm));
 in the follow_udp/tcp/ssl_stream.

Directory: /trunk/gtk/
  Changes    Path                     Action
  +4 -2      follow_ssl.c             Modified
  +5 -2      follow_tcp.c             Modified
  +5 -3      follow_udp.c             Modified
  +1 -0      keys.h                   Modified
  +0 -1      main_filter_toolbar.h    Modified
  +72 -43    menus.c                  Modified