aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/expert_comp_table.c
AgeCommit message (Collapse)AuthorFilesLines
2007-07-16Fix a couple "cast to pointer from integer of different size" warnings when ↵Jeff Morriss1-2/+2
building with GTK1.2 on Redhat AS4 64-bit svn path=/trunk/; revision=22329
2007-05-29From David Howells :Sebastien Tandel1-1/+1
Fix compilation failures when building wireshark-0.99.6-SVN-21916 on an x86_64-unknown-linux-gnu target with gcc version 4.1.2 20070403 (Red Hat 4.1.2-8). The failures fall into two categories: (1) Casts between pointers and 32-bit integers without an intermediary cast via 'long' or 'unsigned long'. This results in a compiler warning complaining about casts between a pointer and an integer of a different size. (2) Passing values to "%lld" or similar printf-style format options that the compiler thinks are a different size. Such values need to be cast to 'long long' or 'unsigned long long'. svn path=/trunk/; revision=21975
2007-04-20Fix bug #1547: Expert Info Composite column "Count" is not sorting numericallyStephen Fisher1-2/+2
svn path=/trunk/; revision=21485
2007-02-19Squelch a few unused parameter warnings.Jeff Morriss1-1/+1
svn path=/trunk/; revision=20863
2007-01-22Fix various compiler warningsStephen Fisher1-1/+0
svn path=/trunk/; revision=20522
2006-12-11We only need to add the tree view to its containing scrolled windowGuy Harris1-72/+70
once. (Subsequent attempts produce a warning and do nothing.) Clean up indentation. svn path=/trunk/; revision=20107
2006-11-27g_strdup takes one parameter not twoRonnie Sahlberg1-3/+3
svn path=/trunk/; revision=19999
2006-11-27remove unused variable: tooltipsRonnie Sahlberg1-1/+0
svn path=/trunk/; revision=19998
2006-11-24Have separate proto_construct_match_selected_string() andGuy Harris1-1/+3
proto_can_match_selected() routines, to more clearly separate the two functions - but have them both call the same underlying routine, so they both make the same decisions as to whether a match-selected string can be constructed or not. svn path=/trunk/; revision=19976
2006-11-23Rename proto_construct_dfilter_string() toGuy Harris1-11/+13
proto_construct_match_selected_string() to indicate what it does - and have it return a Boolean indication of whether the string could be built, returning the string through a pointer, and, if that pointer is null, have it just return the Boolean and not construct the string. Get rid of proto_can_match_selected() - proto_construct_match_selected_string() can be used for that, which means we have only one piece of code that knows whether a "match selected" string can be constructed or not. Have proto_construct_match_selected_string() support matching zero-length FT_NONE (and FT_PCRE, but that shouldn't happen) fields even if there's no epan_dissect_t, as such a match just checks whether the field is present. svn path=/trunk/; revision=19967
2006-10-17from Stephen Fisher:Ulf Lamping1-1/+1
Here is a patch for spelling typos in comments and strings in the gtk/ directories. svn path=/trunk/; revision=19568
2006-08-31move value_strings from expert_dialogs into expert.c to remove duplicatesUlf Lamping1-14/+0
keep the highest severity level of the current file (experimental) svn path=/trunk/; revision=19104
2006-05-22Get rid of a bunch of "Ethereal"s and "ethereal"s in comments, GUIGuy Harris1-1/+1
strings, and function names. svn path=/trunk/; revision=18205
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-05-15Clean up indentation.Guy Harris1-28/+28
Get rid of extra g_strdup_printf() arguments (the argument list is terminated by running out of formats in the format string, not by a terminating null pointer). svn path=/trunk/; revision=18151
2006-05-04From Greg Morris:Anders Broman1-263/+488
In summary these patches do the following: 1. GTK+ 2.x builds will now use Tree View to display the expert items, expanded items are the individual packet numbers. 2. GTK+ 1.x builds will continue to use the older clist functionality 3. Implements the equivilant of expert info (actually calls expert_dlg.c) svn path=/trunk/; revision=18091
2006-03-19Get rid of extra arguments in g_strdup_printf() calls (the end of theGuy Harris1-193/+193
list of arguments is determined by the format string; there's no need for a NULL terminator). Fix indentation. svn path=/trunk/; revision=17674
2006-03-02From Greg Morris:Anders Broman1-3/+3
- Change to display NCP connection for each conversation - New NCP Endpoints. Please apply expert_comp_table - Use local variable space instead of pointer. The previous implementation utilized pointers and the values would change the table data. svn path=/trunk/; revision=17446
2006-01-20Cleaning up copy to CSV codeJaap Keuter1-17/+15
svn path=/trunk/; revision=17064
2005-11-25fix a simple GTK1 warningUlf Lamping1-1/+4
svn path=/trunk/; revision=16595
2005-11-25from Greg Morris:Ulf Lamping1-0/+677
Composite Expert statistics, see: http://www.ethereal.com/lists/ethereal-dev/200511/msg00002.html and the following discussions svn path=/trunk/; revision=16593