aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/expert_comp_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2012-12-22Remove unneeded initializations, and one redundant if condition.Evan Huus1-1/+1
svn path=/trunk/; revision=46702
2012-12-05Fix numerous instances of a variable/parameter name "shadowing" a library ↵Bill Meier1-1/+1
function name; (At least some (gcc ?) compilers give a "shadow" warning for these). svn path=/trunk/; revision=46402
2012-09-28protect_thread_critical_region, unprotect_thread_critical_region are no-ops, ↵Jakub Zawadzki1-4/+0
cleanup code by removing them. svn path=/trunk/; revision=45201
2012-09-28The details tab looked lonely. Give it an icon too.Chris Maynard1-4/+12
svn path=/trunk/; revision=45190
2012-09-22Change "LED" to "icon" and add a packet comment icon to the corresponding ↵Chris Maynard1-7/+13
expert info tab if the preference for displaying them is enabled. Basically, extend the fix for bug 3196 to include the packet comments tab. Also, fix some typos. svn path=/trunk/; revision=45053
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45016
2012-09-10update the expert info entries after a packet comment was modifiedMartin Kaiser1-0/+6
the packet comment window can be opened from the expert infos by clicking on a comment, when a comment is modified in this way, we have to cf_retap_packets() to update the expert infos window https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7690 svn path=/trunk/; revision=44852
2012-07-20For all recent changes (r43820...r43829) from gtk_container_add() to ↵Jakub Zawadzki1-9/+9
gtk_box_pack_start() set expand parameter to TRUE. svn path=/trunk/; revision=43860
2012-07-19gtk_container_add() -> gtk_box_pack_start().Anders Broman1-9/+10
svn path=/trunk/; revision=43829
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-06-16ui/gtk/main_proto_draw.c isn't just used for the main window, it's alsoGuy Harris1-1/+1
used for popped-up packet windows, and it includes more than just code to draw the protocol tree - it includes the hex dump pane code as well. Rename it packet_panes.c; the stuff specific to the main window should be moved into a different file. svn path=/trunk/; revision=43290
2012-06-03g_filename_display_basename() returns a g_mallocated string, so itsGuy Harris1-6/+1
callers either need to free it or their callers need to free it or.... This means that cf_get_display_name() must always return a g_mallocated string and its callers or... must free it. For some of those callers, create a new set_window_title() routine to do the work - they're all using the same pattern. svn path=/trunk/; revision=43047
2012-06-03From Evan Huus: Reset the comment tree when the filter changes ↵Anders Broman1-0/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7317 svn path=/trunk/; revision=43038
2012-05-05AFAICT '#include sys/types.h' is not needed for these files.Bill Meier1-3/+0
svn path=/trunk/; revision=42443
2012-04-21Replace gtk_vbox_new() and gtk_hbox_new() with ws_gtk_box_new().Anders Broman1-12/+12
svn path=/trunk/; revision=42176
2012-03-09Fix up indentation (get rid of 4-space tabs).Jeff Morriss1-64/+64
svn path=/trunk/; revision=41453
2012-03-09Mark an unused parameter as such.Anders Broman1-1/+1
svn path=/trunk/; revision=41452
2012-03-09Make packet comments editable from the expert info tab.Anders Broman1-0/+10
svn path=/trunk/; revision=41451
2012-03-05Use a dedicated treview for packet comments.Anders Broman1-16/+127
svn path=/trunk/; revision=41356
2012-03-02TypoAnders Broman1-1/+1
svn path=/trunk/; revision=41323
2012-03-02Use the expert system to show packet comments.Anders Broman1-16/+53
The packet comment widget should be replaced by a ListView with two columns, packet no and Comment. svn path=/trunk/; revision=41322
2012-01-16Move some headers for UI stuff, and the alert_box.c UI-specific file, toGuy Harris1-1/+2
the ui directory. (Perhaps some other files that would be used by all flavors of Wireshark, for any GUI toolkit or for someting such as ncurses, and not for any command-line tool such as TShark, should be moved there as well.) Shuffle some #includes to put the "ui/XXX.h" includes together. svn path=/trunk/; revision=40529
2012-01-15Move gtk to ui/gtk.Jörg Mayer1-0/+811
This looses the last checkin to gtk, will add this manually back. svn path=/trunk/; revision=40518