aboutsummaryrefslogtreecommitdiffstats
path: root/filters.h
AgeCommit message (Collapse)AuthorFilesLines
2006-10-01Change the filter dialog (capture and display filters), so it has a real ↵Ulf Lamping1-4/+12
Cancel button now - the former Close button didn't reverted the changes done. svn path=/trunk/; revision=19390
2006-05-21name changeRonnie Sahlberg1-1/+1
svn path=/trunk/; revision=18197
2005-08-06"read_filter_list()" and "save_filter_list()" mallocate the path stringGuy Harris1-2/+2
that they return through the "pref_path_return" argument; make it a "char **", as a pointer to a "char *" is passed to it, and the caller has to free that. svn path=/trunk/; revision=15249
2005-08-06Last set of char -> const char trivial warning fixes.Jörg Mayer1-2/+2
svn path=/trunk/; revision=15244
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2003-12-04In GTK+ 2.x, "gtk_entry_get_text()" returns a "const gchar *"; assignGuy Harris1-3/+3
its value to pointer-to-const variables. svn path=/trunk/; revision=9161
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-4/+4
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6117
2001-01-28Have separate capture and display filter lists; some filter dialog boxesGuy Harris1-5/+43
use the capture filter lists, and others use the display filter list, as appropriate. Have separate menu items for editing the capture and display filter lists. Have separate "~/.ethereal/cfilters" and "~/.ethereal/dfilters" files for the two lists; if either of those files isn't found, we try "~/.ethereal/filters", which means that you will start out with two identical lists holding all your filters - if certain filters belong only in one list, you'll have to delete them by hand from the other list. Do I/O error checking when reading and writing filter lists; when writing a filter list, write it to a new file, and then rename the new file on top of the old file, so that you don't lose your old filter list if, for example, you run out of disk space or disk quota. svn path=/trunk/; revision=2948
2001-01-28Pull the stuff to read and write the list of filter expressions up intoGuy Harris1-0/+41
a file in the top-level directory. svn path=/trunk/; revision=2946