aboutsummaryrefslogtreecommitdiffstats
path: root/ui
AgeCommit message (Collapse)AuthorFilesLines
2012-04-21Replace gtk_vbox_new() and gtk_hbox_new() with ws_gtk_box_new().Anders Broman69-275/+275
svn path=/trunk/; revision=42176
2012-04-20Replace gtk_vbox_new() and gtk_hbox_new() with ws_gtk_box_new().Anders Broman10-45/+45
svn path=/trunk/; revision=42162
2012-04-20Replace gtk_vbox_new() and gtk_hbox_new() with ws_gtk_box_new().Anders Broman10-47/+47
svn path=/trunk/; revision=42161
2012-04-20From Martin Kaiser: menus, main window title, icons are not reset when ↵Anders Broman1-0/+29
capture is interrupted before any data arrives. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7129 svn path=/trunk/; revision=42149
2012-04-18Fix some: 'cast discards qualifiers from pointer target type' warningsJakub Zawadzki3-3/+3
- Add const qualifier - Remove some strange casts svn path=/trunk/; revision=42131
2012-04-16Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte2-20/+1
svn path=/trunk/; revision=42090
2012-04-15Get rid of the error code argument to scan_local_interfaces(); nobodyGuy Harris4-22/+19
uses it once it's filled in. From Evan Huus: in scan_local_interfaces(), pass NULL to capture_interface_list(), as we don't use the error string (and don't free it, either). In fill_capture_box(), for CANT_GET_INTERFACE_LIST, include the error string in the report, and free it, in all cases, when we're done with it. svn path=/trunk/; revision=42089
2012-04-15From Evan Huus: fix a memory leak. Fixes bug 7097.Guy Harris1-0/+1
svn path=/trunk/; revision=42088
2012-04-15Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte8-22/+4
svn path=/trunk/; revision=42086
2012-04-14From Even Huus: free a strduped string. Fixes bug 7094.Guy Harris1-0/+3
svn path=/trunk/; revision=42074
2012-04-14From Evan Huus: free if_string when we're done with it. Fixes bug 7093.Guy Harris1-1/+2
From me: don't bother initializing if_string in its definition, as if it's used at all it's set to a different value before all uses. svn path=/trunk/; revision=42073
2012-04-14From Evan Huus: Memory leak in scan_local_interfaces. ↵Anders Broman1-7/+6
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7086 svn path=/trunk/; revision=42061
2012-04-14From Evan Huus: Memory leaks in graph_analysis.c ↵Anders Broman1-3/+7
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7082 changed to not allocating time_str unless needed. svn path=/trunk/; revision=42060
2012-04-14If we don't even *have* a filter combo box, there's nothing we can checkGuy Harris1-8/+21
or colorize; quit before we even *try* to get the link-layer header type. If we don't have an active link-layer header type, that probably means we don't know what link-layer header types the interface provides, which would be the case if it were a named pipe or an interface we can't open. Don't crash in that case, just leave the filter combo box uncolored, to indicate that we have no clue whether the filter is valid or not. Fixes bug 7049. svn path=/trunk/; revision=42059
2012-04-13Remove doubled semicolons and semicolons outside function.Jakub Zawadzki6-9/+9
svn path=/trunk/; revision=42053
2012-04-12Simplify r42030 expression. Thanks!Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=42038
2012-04-12Added Rel. Start and Duration to tshark -z conv,xxx output. Tidied up ↵Graham Bloice1-356/+113
duplicated code svn path=/trunk/; revision=42037
2012-04-12The last bit of a byte, on its own, needs a mask of 1, rather than 256.Martin Mathieson1-1/+1
It was not being highlighted in the bits view. So add % 8 to avoid shifting the single mask bit right out of the byte we're supposed to be showing... svn path=/trunk/; revision=42030
2012-04-10There's no __solaris__ predefine for Solaris; just use __sun.Guy Harris1-4/+2
svn path=/trunk/; revision=42011
2012-04-10OK, that doesn't work; on Solaris, try _XOPEN_SOURCE=500, to requestGuy Harris1-2/+4
SUSv2, and see if *that* makes the build work. svn path=/trunk/; revision=42010
2012-04-10Add missing consts.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=42004
2012-04-09Fix 'overflow in implicit constant conversion', make it const.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=41998
2012-04-09Add missing const attribute to some char *Jakub Zawadzki2-6/+7
Fix some "assignment discards qualifiers from pointer target type", etc svn path=/trunk/; revision=41996
2012-04-09Add missing const attribute to some char *Jakub Zawadzki2-2/+2
Fix some "assignment discards qualifiers from pointer target type", etc svn path=/trunk/; revision=41993
2012-04-05Instead of loading our coordinates from a separate text file viaGerald Combs1-37/+71
OpenLayers.Layer.Text, insert them into a JSON array and load them using OpenLayers.Layer.Vector + OpenLayers.Format.GeoJSON. This should fix the endpoint map feature on modern browsers. Switch OpenStreetMap to a simpler map from OSGeo. svn path=/trunk/; revision=41967
2012-04-05Fix test to avoid dividing by 0.0 (was displaying as "-nan" rather thanMartin Mathieson2-2/+2
crashing). svn path=/trunk/; revision=41948
2012-04-04Add a "-build" argument to checkAPIs.pl. Use that argument when buildingJeff Morriss8-15/+15
from makefiles (and thus from the buildbot). The intention is to be able to tell when a human is running the tool so we can provide more code-review guidance. As a starter, enable the "too many proto_tree_add_text() calls" check when a human is running the tool. svn path=/trunk/; revision=41943
2012-04-04Fix CID 613: item_str can't be NULL here so don't check for it being NULL.Jeff Morriss1-1/+1
svn path=/trunk/; revision=41935
2012-04-04Fix CID 614: callsinfo can't be NULL here so don't check for it being NULL.Jeff Morriss1-101/+98
svn path=/trunk/; revision=41934
2012-04-04Fix CID 615: strinfo can't be NULL here so don't check for it being NULL.Jeff Morriss1-145/+143
svn path=/trunk/; revision=41933
2012-04-04Fix CID 616: callsinfo can't be NULL here so don't check for it being NULL.Jeff Morriss1-13/+11
svn path=/trunk/; revision=41932
2012-04-04Fix CID 617: te can't be NULL here (unless si is NULL in which case we'veJeff Morriss1-3/+0
got bigger problems) so there's no need to check for it being NULL. svn path=/trunk/; revision=41931
2012-04-02From Irene Ruengeler: Fix a warning when capturing.Michael Tüxen3-9/+16
svn path=/trunk/; revision=41897
2012-04-02If a comment is cleared, remove it from fdata->opt_comment.Anders Broman1-0/+6
svn path=/trunk/; revision=41895
2012-04-02Fix a couple of typos and missing return for GTK 3.Anders Broman1-2/+4
svn path=/trunk/; revision=41894
2012-04-02Introduce utility function to ease GTK3 depcrecated funktion removal.Anders Broman3-180/+42
svn path=/trunk/; revision=41893
2012-04-01More whitespace changes...Michael Tüxen1-93/+93
svn path=/trunk/; revision=41888
2012-04-01Remove waring.Michael Tüxen1-16/+16
While there: Some whitespace cleanups. svn path=/trunk/; revision=41887
2012-04-01From Cal Turney: IO Graph LOAD inaccuracy, intervals not displayed, wrong ↵Anders Broman1-272/+275
frames displayed. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6994 svn path=/trunk/; revision=41883
2012-03-31From Martin Kaiser: Fix for main_menubar.c:3874: error: set_menu_visible ↵Anders Broman1-1/+4
defined but not used svn path=/trunk/; revision=41868
2012-03-30gcc 4.7 would complain that the getopt stuff was not declared.Jörg Mayer1-17/+19
Looks like getopt.h was silently included somewhere in gcc-4.6's includes. Explicitely include <getopt.h>. No idea whether this is the correct fix. Whitespace change: indent includes, if they are inside a conditional. svn path=/trunk/; revision=41847
2012-03-30Recreate the packet list when changing UAT for header fields.Stig Bjørlykke1-3/+13
This fixes a crash when changing settings for fields used as a custom column. svn path=/trunk/; revision=41840
2012-03-30As pointed out by Alexis: remove a bunch of set-but-unused variables.Jeff Morriss1-76/+3
svn path=/trunk/; revision=41839
2012-03-30Fix the flag used in a test.Martin Mathieson1-1/+1
svn path=/trunk/; revision=41835
2012-03-29Fix a test to avoid setting an invalid display filter.Martin Mathieson1-3/+4
Reorder some comments to make things a little clearer. svn path=/trunk/; revision=41834
2012-03-28Add newline at end of file to fix compilation error.Stephen Fisher1-1/+1
svn path=/trunk/; revision=41820
2012-03-28From Irene Ruengeler: Fix a crash.Michael Tüxen1-3/+5
svn path=/trunk/; revision=41818
2012-03-28Fix compilation.Michael Tüxen1-1/+1
svn path=/trunk/; revision=41815
2012-03-27User data is not used in capture_prepare_cb and capture_do_cb.Stig Bjørlykke1-6/+2
svn path=/trunk/; revision=41792
2012-03-27Get things compiling if we HAVE_AIRPCAP.Jeff Morriss2-8/+5
svn path=/trunk/; revision=41789