aboutsummaryrefslogtreecommitdiffstats
path: root/ui/recent.c
AgeCommit message (Collapse)AuthorFilesLines
2013-10-29Revert part of 52896 and (for now) all of 52935. As Jeff pointed out,Gerald Combs1-2/+10
the PortableApps version relies on U3_-prefixed environment variables. svn path=/trunk/; revision=52941
2013-10-27Remove U3 code and packaging.Gerald Combs1-10/+2
svn path=/trunk/; revision=52896
2013-07-28Close a memory leak.Guy Harris1-2/+3
svn path=/trunk/; revision=50993
2013-07-28Add a comment.Guy Harris1-1/+3
In recent_add_cfilter(), the list we're working on is cfilter_list; properly remove an item from it - don't assign the result to recent_cfilter_list, assign it to cfilter_list. This may fix some crashes and Valgrind errors. svn path=/trunk/; revision=50984
2013-07-27Have separate lists of recent capture filters for all interfaces, inGuy Harris1-3/+127
addition to a "global" list. Store all of those lists in the recent file. Maintain the lists in ui/recent.c, rather than attaching them to widgets; have the code that populates the combo boxes get the lists from the ui/recent.c code. This makes a little more of the code GUI-toolkit-independent, and should fix bug 7278. #BACKPORT 1.10, 1.8 svn path=/trunk/; revision=50956
2013-07-16Move u3.{h,c} and g711.{h,c} into wsutil.Jeff Morriss1-2/+1
Project g711.h against multiple inclusion and add C++ compatibility wrapper. svn path=/trunk/; revision=50654
2013-04-09Don't try to open <home>/.wireshark on Windows: Wireshark hasn't written toJeff Morriss1-7/+7
that directory since 2001 and reading from that directory was only left in for backwards compatibility with versions prior to r4702. I think it's now safe to remove that backwards compatibility. This eliminates the last argument of get_persconffile_path(). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8437 svn path=/trunk/; revision=48797
2013-03-15From beroset:Anders Broman1-14/+15
remove C++ incompatibilities https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 svn path=/trunk/; revision=48333
2013-02-26it's ==> its & its ==> it's as needed.Bill Meier1-1/+1
svn path=/trunk/; revision=47898
2013-02-02Move the GUI-independent window geometry stuff to ui/recent.c, so weGuy Harris1-22/+156
only have one copy. svn path=/trunk/; revision=47440
2013-02-02Move recent.c to the ui directory, as we did with its header file.Guy Harris1-0/+1096
svn path=/trunk/; revision=47438